about summary refs log tree commit diff stats
path: root/apps/factorial.subx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/factorial.subx')
-rw-r--r--apps/factorial.subx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/factorial.subx b/apps/factorial.subx
index 66fc4be0..b6635016 100644
--- a/apps/factorial.subx
+++ b/apps/factorial.subx
@@ -19,7 +19,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
 
 Entry:  # run tests if necessary, compute `factorial(5)` if not
-    # . prolog
+    # . prologue
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
 
     # initialize heap
@@ -69,7 +69,7 @@ $main:end:
     cd/syscall  0x80/imm8
 
 factorial:  # n : int -> int/eax
-    # . prolog
+    # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
     53/push-ebx
@@ -91,7 +91,7 @@ factorial:  # n : int -> int/eax
     f7          4/subop/multiply    1/mod/*+disp8   5/rm32/ebp    .           .                                     8/disp8         .                 # multiply *(ebp+8) into eax
     # TODO: check for overflow
 $factorial:end:
-    # . epilog
+    # . epilogue
     5b/pop-to-ebx
     89/copy                         3/mod/direct    4/rm32/esp    .           .             .           5/r32/ebp   .               .                 # copy ebp to esp
     5d/pop-to-ebp