diff options
Diffstat (limited to '060read.subx')
-rw-r--r-- | 060read.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/060read.subx b/060read.subx index 34658b7b..3fad28b4 100644 --- a/060read.subx +++ b/060read.subx @@ -45,7 +45,7 @@ # . op subop mod rm32 base index scale r32 # . 1-3 bytes 3 bits 2 bits 3 bits 3 bits 3 bits 2 bits 2 bits 0/1/2/4 bytes 0/1/2/4 bytes -read: # f : fd or (address stream byte), s : (address stream byte) -> num-bytes-read/eax : int +read: # f : fd or (addr stream byte), s : (addr stream byte) -> num-bytes-read/eax : int # . prologue 55/push-ebp 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp @@ -195,7 +195,7 @@ $_buffer-4:end: # Unclear how I'd use it, though. Callers seem to need the check anyway. # Maybe a better helper would be 'empty-stream?' -_read: # fd : int, s : (address stream byte) -> num-bytes-read/eax : int +_read: # fd : int, s : (addr stream byte) -> num-bytes-read/eax : int # . prologue 55/push-ebp 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp |