about summary refs log tree commit diff stats
path: root/062write-stream.subx
diff options
context:
space:
mode:
Diffstat (limited to '062write-stream.subx')
-rw-r--r--062write-stream.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/062write-stream.subx b/062write-stream.subx
index 2dab3fe8..2183e59b 100644
--- a/062write-stream.subx
+++ b/062write-stream.subx
@@ -15,7 +15,7 @@
 #?     b8/copy-to-eax  1/imm32/exit
 #?     cd/syscall  0x80/imm8
 
-write-stream:  # f : fd or (address stream byte), s : (address stream byte)
+write-stream:  # f : fd or (addr stream byte), s : (addr stream byte)
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -75,7 +75,7 @@ $write-stream:end:
     5d/pop-to-ebp
     c3/return
 
-_write-stream:  # fd : int, s : (address stream byte)
+_write-stream:  # fd : int, s : (addr stream byte)
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157