about summary refs log tree commit diff stats
path: root/subx/019functions.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-14 00:00:39 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-14 00:00:39 -0700
commit0f851e48aa3e89648dfd39f706c36ba3c6964da8 (patch)
tree039c3c25206cdb5ca8be9d56fce7d7e561cc1241 /subx/019functions.cc
parent06d9b1a5417dedf3fe256fcccbae852e4bdd125c (diff)
downloadmu-0f851e48aa3e89648dfd39f706c36ba3c6964da8.tar.gz
4695
Diffstat (limited to 'subx/019functions.cc')
-rw-r--r--subx/019functions.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/019functions.cc b/subx/019functions.cc
index 1eef7300..a3b57ca5 100644
--- a/subx/019functions.cc
+++ b/subx/019functions.cc
@@ -1,7 +1,7 @@
 //:: call
 
-:(before "End Initialize Op Names(name)")
-put_new(name, "e8", "call disp32 (call)");
+:(before "End Initialize Op Names")
+put_new(Name, "e8", "call disp32 (call)");
 
 :(scenario call_disp32)
 % Reg[ESP].u = 0x64;
@@ -67,8 +67,8 @@ a0 00 00 00  # 0xa0
 
 //:: ret
 
-:(before "End Initialize Op Names(name)")
-put_new(name, "c3", "return from most recent unfinished call (ret)");
+:(before "End Initialize Op Names")
+put_new(Name, "c3", "return from most recent unfinished call (ret)");
 
 :(scenario ret)
 % Reg[ESP].u = 0x2000;