about summary refs log tree commit diff stats
path: root/051test.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
commit71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (patch)
tree56307b5145be44b2239d3c782234309ed714f1b6 /051test.subx
parent1a65c3af0f797892f5981f8ebd33c275c1ef06b0 (diff)
downloadmu-71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990.tar.gz
5924
Diffstat (limited to '051test.subx')
-rw-r--r--051test.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/051test.subx b/051test.subx
index e12ce509..518ed0de 100644
--- a/051test.subx
+++ b/051test.subx
@@ -21,7 +21,7 @@ Entry:  # manual test
     cd/syscall  0x80/imm8
 
 # print msg to stderr if a != b, otherwise print "."
-check-ints-equal:  # a : int, b : int, msg : (addr array byte)
+check-ints-equal:  # a: int, b: int, msg: (addr array byte)
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -81,7 +81,7 @@ $check-ints-equal:end:
 # length-prefixed string containing just a single newline
 # convenient to have when printing messages and so on
 Newline:  # (array byte)
-    # size : int
+    # size: int
     1/imm32
     # data
     0a/newline
@@ -92,14 +92,14 @@ Num-test-failures:  # int
 
 # length-prefixed string containing just a single space
 Space:  # (array byte)
-    # size : int
+    # size: int
     1/imm32
     # data
     20/space
 
 # length-prefixed string containing just a single slash
 Slash:  # (array byte)
-    # size : int
+    # size: int
     1/imm32
     # data
     2f/slash