about summary refs log tree commit diff stats
path: root/subx/021byte_addressing.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/021byte_addressing.cc
parent06d9b1a5417dedf3fe256fcccbae852e4bdd125c (diff)
downloadmu-0f851e48aa3e89648dfd39f706c36ba3c6964da8.tar.gz
4695
Diffstat (limited to 'subx/021byte_addressing.cc')
-rw-r--r--subx/021byte_addressing.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/021byte_addressing.cc b/subx/021byte_addressing.cc
index 685cf135..0a3b77d3 100644
--- a/subx/021byte_addressing.cc
+++ b/subx/021byte_addressing.cc
@@ -37,8 +37,8 @@ uint8_t* reg_8bit(uint8_t rm) {
   return result;
 }
 
-:(before "End Initialize Op Names(name)")
-put_new(name, "88", "copy r8 to r8/m8-at-r32");
+:(before "End Initialize Op Names")
+put_new(Name, "88", "copy r8 to r8/m8-at-r32");
 
 :(scenario copy_r8_to_mem_at_r32)
 % Reg[EBX].i = 0x224488ab;
@@ -69,8 +69,8 @@ case 0x88: {  // copy r8 to r/m8
 
 //:
 
-:(before "End Initialize Op Names(name)")
-put_new(name, "8a", "copy r8/m8-at-r32 to r8");
+:(before "End Initialize Op Names")
+put_new(Name, "8a", "copy r8/m8-at-r32 to r8");
 
 :(scenario copy_mem_at_r32_to_r8)
 % Reg[EBX].i = 0xaabbcc0f;  // one nibble each of lowest byte set to all 0s and all 1s, to maximize value of this test