about summary refs log tree commit diff stats
path: root/subx/examples/ex6.subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx/examples/ex6.subx')
-rw-r--r--subx/examples/ex6.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/examples/ex6.subx b/subx/examples/ex6.subx
index 256aa47c..1c726c65 100644
--- a/subx/examples/ex6.subx
+++ b/subx/examples/ex6.subx
@@ -12,17 +12,17 @@
 
   # write(stdout, x, size)
     # fd = 1 (stdout)
-  bb/copy                         .               .             .           .             .           .           .               1/imm32           # copy to EBX
+  bb/copy-to-EBX  1/imm32
     # initialize x (location to write result to)
-  b9/copy                         .               .             .           .             .           .           .               x/imm32           # copy to ECX
+  b9/copy-to-ECX  x/imm32
     # initialize size
   8b/copy                         0/mod/indirect  5/rm32/.disp32            .             .           2/r32/EDX   size/disp32     .                 # copy *size to EDX
     # write(fd, x, size)
-  b8/copy                         .               .             .           .             .           .           .               4/imm32/write     # copy to EAX
+  b8/copy-to-EAX  4/imm32/write
   cd/syscall  0x80/imm8
 
   # exit(EBX)
-  b8/copy                         .               .             .           .             .           .           .               1/imm32/exit      # copy to EAX
+  b8/copy-to-EAX  1/imm32/exit
   cd/syscall  0x80/imm8
 
 == data