about summary refs log tree commit diff stats
path: root/subx/050write_stderr.subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx/050write_stderr.subx')
-rw-r--r--subx/050write_stderr.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/050write_stderr.subx b/subx/050write_stderr.subx
index ed06b7ff..51fd5a80 100644
--- a/subx/050write_stderr.subx
+++ b/subx/050write_stderr.subx
@@ -15,7 +15,7 @@ write-stderr:  # s : (address array byte) -> <void>
   53/push-EBX
   # write(2/stderr, (data) s+4, (size) *s)
     # fd = 2 (stderr)
-  bb/copy                         .               .             .           .             .           .           .               2/imm32           # copy to EBX
+  bb/copy-to-EBX  2/imm32
     # x = s+4
   8b/copy                         1/mod/*+disp8   4/rm32/sib    5/base/EBP  4/index/none  .           1/r32/ECX   8/disp8         .                 # copy *(EBP+8) to ECX
   81          0/subop/add         3/mod/direct    1/rm32/ECX    .           .             .           .           .               4/imm32           # add to ECX
@@ -23,7 +23,7 @@ write-stderr:  # s : (address array byte) -> <void>
   8b/copy                         1/mod/*+disp8   4/rm32/sib    5/base/EBP  4/index/none  .           2/r32/EDX   8/disp8         .                 # copy *(EBP+8) to EDX
   8b/copy                         0/mod/indirect  2/rm32/EDX    .           .             .           2/r32/EDX   .               .                 # copy *EDX to EDX
     # call write()
-  b8/copy                         .               .             .           .             .           .           .               4/imm32/write     # copy to EAX
+  b8/copy-to-EAX  4/imm32/write
   cd/syscall  0x80/imm8
   # restore registers
   5b/pop-to-EBX