about summary refs log tree commit diff stats
path: root/064write-byte.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-03 01:36:34 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-03 01:36:34 -0800
commit7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077 (patch)
tree405503a31b48f5c5e13f103efc5762e57b290625 /064write-byte.subx
parentc9bda4d13ea33873dd5bce1eef0434cb11763d19 (diff)
downloadmu-7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077.tar.gz
5876 - address -> addr
Diffstat (limited to '064write-byte.subx')
-rw-r--r--064write-byte.subx12
1 files changed, 6 insertions, 6 deletions
diff --git a/064write-byte.subx b/064write-byte.subx
index 2e7a36f3..cd68eea7 100644
--- a/064write-byte.subx
+++ b/064write-byte.subx
@@ -8,7 +8,7 @@
 
 # The buffered file for standard output.
 Stdout:  # (ref buffered-file)
-    # file descriptor or (address stream byte)
+    # file descriptor or (addr stream byte)
     1/imm32  # standard output
 $Stdout->buffer:
     # inlined fields for a stream
@@ -30,7 +30,7 @@ $Stdout->buffer:
 # . 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
 
 # Write lower byte of 'n' to 'f'.
-write-byte-buffered:  # f : (address buffered-file), n : int
+write-byte-buffered:  # f : (addr buffered-file), n : int
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -78,7 +78,7 @@ $write-byte-buffered:end:
     5d/pop-to-ebp
     c3/return
 
-flush:  # f : (address buffered-file)
+flush:  # f : (addr buffered-file)
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -205,7 +205,7 @@ test-write-byte-buffered-multiple-flushes:
 # - variant without buffering
 
 # Write lower byte of 'n' to 'f'.
-append-byte:  # f : (address stream byte), n : int
+append-byte:  # f : (addr stream byte), n : int
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -326,7 +326,7 @@ _test-output-stream:  # (ref stream byte)
 
 # a test buffered file for _test-output-stream
 _test-output-buffered-file:  # (ref buffered-file)
-    # file descriptor or (address stream byte)
+    # file descriptor or (addr stream byte)
     _test-output-stream/imm32
 $_test-output-buffered-file->buffer:
     # current write index
@@ -357,7 +357,7 @@ _test-error-stream:  # (ref stream byte)
 
 # a test buffered file for _test-error-stream
 _test-error-buffered-file:  # (ref buffered-file)
-    # file descriptor or (address stream byte)
+    # file descriptor or (addr stream byte)
     _test-error-stream/imm32
 $_test-error-buffered-file->buffer:
     # current write index