about summary refs log tree commit diff stats
path: root/057write.subx
diff options
context:
space:
mode:
Diffstat (limited to '057write.subx')
-rw-r--r--057write.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/057write.subx b/057write.subx
index b1ec1688..db3cb5cc 100644
--- a/057write.subx
+++ b/057write.subx
@@ -21,7 +21,7 @@
 # . 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
 
 # TODO: come up with a way to signal when a write to disk fails
-write:  # f : fd or (address stream), s : (address array byte)
+write:  # f : fd or (address stream byte), s : (address array byte)
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -145,7 +145,7 @@ test-write-appends:
 
 == data
 
-_test-stream:
+_test-stream:  # (ref stream byte)
     # current write index
     0/imm32
     # current read index
98'>98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117