Skip to content
Snippets Groups Projects
Commit a1582607 authored by Raymond Toy's avatar Raymond Toy
Browse files

Revert e15cd9fa

Don't print BREAK as INT3 because it looks funny.  The disassembly
looks like

      INT3    <code>

instead of 

      BREAK   <code>

To do this properly requires a lot more work to get the code printed
on the next line and also getting the disassembler to recognize the
break case.
parent f87fe0bd
No related branches found
No related tags found
No related merge requests found
......@@ -2105,7 +2105,6 @@
(define-instruction break (segment code)
(:declare (type (unsigned-byte 8) code))
(:printer byte-imm ((op #b11001100)) '(:name :tab code)
:print-name 'int3
:control #'break-control)
(:emitter
(emit-byte segment #b11001100)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment