about summary refs log tree commit diff stats
path: root/subx/036global_variables.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-05 21:30:22 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-05 21:30:22 -0700
commit94ad882e828f83df4a4cc0deab1a10e9d5e54eec (patch)
treef51448732674fa8744e8517c4755255afc764b1f /subx/036global_variables.cc
parent03d50cc83c7c2bebb2b019667b80c1c51f4a8def (diff)
downloadmu-94ad882e828f83df4a4cc0deab1a10e9d5e54eec.tar.gz
4668
Diffstat (limited to 'subx/036global_variables.cc')
-rw-r--r--subx/036global_variables.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/036global_variables.cc b/subx/036global_variables.cc
index e7c139ae..a5e15369 100644
--- a/subx/036global_variables.cc
+++ b/subx/036global_variables.cc
@@ -8,7 +8,7 @@
 
 :(scenario global_variable)
 == code
-b9/copy x/imm32  # copy to ECX
+b9  x/imm32
 == data
 x:
 00 00 00 00
@@ -129,7 +129,7 @@ bool has_metadata(const word& w, const string& m) {
 :(scenario global_variable_disallowed_in_jump)
 % Hide_errors = true;
 == code
-eb/jump x/disp8
+eb/jump  x/disp8
 == data
 x:
 00 00 00 00
@@ -140,7 +140,7 @@ x:
 :(scenario global_variable_disallowed_in_call)
 % Hide_errors = true;
 == code
-e8/call x/disp32
+e8/call  x/disp32
 == data
 x:
 00 00 00 00