about summary refs log tree commit diff stats
path: root/066print-int.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 /066print-int.subx
parentc9bda4d13ea33873dd5bce1eef0434cb11763d19 (diff)
downloadmu-7e7a8a6eaeb4c22acb94aaca87a7b15c180ca077.tar.gz
5876 - address -> addr
Diffstat (limited to '066print-int.subx')
-rw-r--r--066print-int.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/066print-int.subx b/066print-int.subx
index a1f968f7..dacf9ef5 100644
--- a/066print-int.subx
+++ b/066print-int.subx
@@ -18,7 +18,7 @@ $to-hex-char:else:
     05/add-to-eax  0x57/imm32/a-10
     c3/return
 
-append-byte-hex:  # f : (address stream byte), n : int
+append-byte-hex:  # 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
@@ -90,7 +90,7 @@ test-append-byte-hex:
     c3/return
 
 # print the hex representation for the lowest byte of a number
-print-byte-buffered:  # f : (address buffered-file), n : int
+print-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
@@ -175,7 +175,7 @@ test-print-byte-buffered:
     # . end
     c3/return
 
-print-int32:  # f : (address stream byte), n : int
+print-int32:  # f : (addr stream byte), n : int
     # pseudocode:
     #  write(f, "0x")
     #  ecx = 28
@@ -263,7 +263,7 @@ test-print-int32:
     # . end
     c3/return
 
-print-int32-buffered:  # f : (address buffered-file), n : int
+print-int32-buffered:  # f : (addr buffered-file), n : int
     # pseudocode:
     #  write-buffered(f, "0x")
     #  ecx = 28