about summary refs log tree commit diff stats
path: root/063error.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-10-15 19:35:19 -0700
committerKartik Agaram <vc@akkartik.com>2019-10-15 19:35:19 -0700
commit7a5832204a80ff43d23c3a384c26e2217ef5908b (patch)
tree5d3dce95369bf30b84735afd6e21bf1a43db16b7 /063error.subx
parent6a51218e12ce75e51301b834e1c48e86aefedc1e (diff)
downloadmu-7a5832204a80ff43d23c3a384c26e2217ef5908b.tar.gz
5698
Thanks Andrew Owen for reporting this typo.
Diffstat (limited to '063error.subx')
-rw-r--r--063error.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/063error.subx b/063error.subx
index c40586c7..10f10667 100644
--- a/063error.subx
+++ b/063error.subx
@@ -7,7 +7,7 @@
 
 # write(out, "Error: "+msg+"\n") then stop(ed, 1)
 error:  # ed : (address exit-descriptor), out : fd or (address stream), msg : (address array byte) -> <void>
-    # . prolog
+    # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
     # write(out, "Error: ")
@@ -42,7 +42,7 @@ error:  # ed : (address exit-descriptor), out : fd or (address stream), msg : (a
     e8/call  stop/disp32
     # should never get past this point
 $error:dead-end:
-    # . epilog
+    # . epilogue
     89/copy                         3/mod/direct    4/rm32/esp    .           .             .           5/r32/ebp   .               .                 # copy ebp to esp
     5d/pop-to-ebp
     c3/return