about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-16 23:16:05 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-16 23:27:38 -0700
commit8108f5b875c07e1f6c3f13a32a7bfe23e69715c4 (patch)
treee94a8b36fed91d467fd66b4e466b5204b698fa6b
parent7ea0b5325b5bb609f15a8b70b07cb0d6464c8414 (diff)
downloadmu-8108f5b875c07e1f6c3f13a32a7bfe23e69715c4.tar.gz
4705
-rw-r--r--subx/050_write.subx2
-rw-r--r--subx/051test.subx2
-rw-r--r--subx/052kernel_string_equal.subx2
-rw-r--r--subx/055trace.subx6
4 files changed, 6 insertions, 6 deletions
diff --git a/subx/050_write.subx b/subx/050_write.subx
index 803c2f14..a058a529 100644
--- a/subx/050_write.subx
+++ b/subx/050_write.subx
@@ -38,7 +38,7 @@ _write:  # fd : int, s : (address array byte) -> <void>
   5a/pop-to-EDX
   59/pop-to-ECX
   58/pop-to-EAX
-  # end
+  # epilog
   89/copy                         3/mod/direct    4/rm32/ESP    .           .             .           5/r32/EBP   .               .                 # copy EBP to ESP
   5d/pop-to-EBP
   c3/return
diff --git a/subx/051test.subx b/subx/051test.subx
index 2556b4ee..b2adf105 100644
--- a/subx/051test.subx
+++ b/subx/051test.subx
@@ -68,7 +68,7 @@ $check-ints-equal:end:
   # restore registers
   5b/pop-to-EBX
   59/pop-to-ECX
-  # end
+  # epilog
   89/copy                         3/mod/direct    4/rm32/ESP    .           .             .           5/r32/EBP   .               .                 # copy EBP to ESP
   5d/pop-to-EBP
   c3/return
diff --git a/subx/052kernel_string_equal.subx b/subx/052kernel_string_equal.subx
index 85aba0c0..b22ad48f 100644
--- a/subx/052kernel_string_equal.subx
+++ b/subx/052kernel_string_equal.subx
@@ -105,7 +105,7 @@ $kernel-string-equal:end:
   5b/pop-to-EBX
   5a/pop-to-EDX
   59/pop-to-ECX
-  # end
+  # epilog
   89/copy                         3/mod/direct    4/rm32/ESP    .           .             .           5/r32/EBP   .               .                 # copy EBP to ESP
   5d/pop-to-EBP
   c3/return
diff --git a/subx/055trace.subx b/subx/055trace.subx
index 00f09ed5..b9ab5e67 100644
--- a/subx/055trace.subx
+++ b/subx/055trace.subx
@@ -240,7 +240,7 @@ test-trace-single:
   e8/call  check-ints-equal/disp32
     # discard args
   81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               0xc/imm32         # add to ESP
-  # done
+  # end
   c3/return
 
 test-trace-appends:
@@ -278,7 +278,7 @@ test-trace-appends:
   e8/call  check-ints-equal/disp32
     # discard args
   81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               0xc/imm32         # add to ESP
-  # done
+  # end
   c3/return
 
 test-trace-empty-line:
@@ -308,7 +308,7 @@ test-trace-empty-line:
   e8/call  check-ints-equal/disp32
     # discard args
   81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               0xc/imm32         # add to ESP
-  # done
+  # end
   c3/return
 
 # vim:nowrap:textwidth=0