about summary refs log tree commit diff stats
path: root/subx/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-08 00:17:42 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-08 00:17:42 -0700
commit597ce7a94304f962587516babbcbb18914ebf93f (patch)
treed92bcbae72ddcc289f3c3bdf96bd2cd5829619e6 /subx/apps
parent7af8f4e8f6f296f2ebdd11c0a46b0a6a55bcf2d9 (diff)
downloadmu-597ce7a94304f962587516babbcbb18914ebf93f.tar.gz
.
Diffstat (limited to 'subx/apps')
-rw-r--r--subx/apps/survey.subx10
1 files changed, 5 insertions, 5 deletions
diff --git a/subx/apps/survey.subx b/subx/apps/survey.subx
index 6f109a08..59318aea 100644
--- a/subx/apps/survey.subx
+++ b/subx/apps/survey.subx
@@ -2222,7 +2222,7 @@ $num-bytes:check0:
     # . if (EAX != 0) break
     3d/compare-EAX-and  0/imm32
     # . restore result now that ZF is set
-    58/pop-into-EAX
+    58/pop-to-EAX
     75/jump-if-not-equal  $num-bytes:end/disp8
 $num-bytes:check-for-comment:
     # if (slice-starts-with?(word-slice, "#")) break
@@ -2259,7 +2259,7 @@ $num-bytes:check-for-segment-header:
     # . if (EAX != 0) break
     3d/compare-EAX-and  0/imm32
     # . restore result now that ZF is set
-    58/pop-into-EAX
+    58/pop-to-EAX
     75/jump-if-not-equal  $num-bytes:end/disp8
 $num-bytes:loop-body:
     # result += compute-width-of-slice(word-slice)
@@ -2279,9 +2279,9 @@ $num-bytes:end:
     # . reclaim locals
     81          0/subop/add         3/mod/direct    4/rm32/ESP    .           .             .           .           .               8/imm32           # add to ESP
     # . restore registers
-    5b/pop-into-EBX
-    5a/pop-into-EDX
-    59/pop-into-ECX
+    5b/pop-to-EBX
+    5a/pop-to-EDX
+    59/pop-to-ECX
     # . epilog
     89/copy                         3/mod/direct    4/rm32/ESP    .           .             .           5/r32/EBP   .               .                 # copy EBP to ESP
     5d/pop-to-EBP