about summary refs log tree commit diff stats
path: root/subx/ex2.subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx/ex2.subx')
-rw-r--r--subx/ex2.subx5
1 files changed, 2 insertions, 3 deletions
diff --git a/subx/ex2.subx b/subx/ex2.subx
index 39f784e9..32ab1318 100644
--- a/subx/ex2.subx
+++ b/subx/ex2.subx
@@ -3,11 +3,10 @@
 # opcode        ModR/M                    SIB                   displacement    immediate
 # instruction   mod, reg, Reg/Mem bits    scale, index, base
 # 1-3 bytes     0/1 byte                  0/1 byte              0/1/2/4 bytes   0/1/2/4 bytes
-  bb                                                                            2a 00 00 00   # copy 0x2a (42) to EBX
   bb                                                                            42/imm32      # copy 42 to EBX
   81            c3                                                              1/imm32       # add 1 to EBX
   # exit
-  05                                                                            01 00 00 00   # copy 1 to EAX
-  cd                                                                            80            # int 80h
+  b8                                                                            1/imm32       # copy 1 to EAX
+  cd                                                                            128/imm8      # int 80h
 
 # vim:ft=subx