diff options
Diffstat (limited to '062write-stream.subx')
-rw-r--r-- | 062write-stream.subx | 4 |
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 |