diff options
Diffstat (limited to 'subx/021byte_addressing.cc')
-rw-r--r-- | subx/021byte_addressing.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/021byte_addressing.cc b/subx/021byte_addressing.cc index b49718d1..685cf135 100644 --- a/subx/021byte_addressing.cc +++ b/subx/021byte_addressing.cc @@ -38,7 +38,7 @@ uint8_t* reg_8bit(uint8_t rm) { } :(before "End Initialize Op Names(name)") -put(name, "88", "copy r8 to r8/m8-at-r32"); +put_new(name, "88", "copy r8 to r8/m8-at-r32"); :(scenario copy_r8_to_mem_at_r32) % Reg[EBX].i = 0x224488ab; @@ -70,7 +70,7 @@ case 0x88: { // copy r8 to r/m8 //: :(before "End Initialize Op Names(name)") -put(name, "8a", "copy r8/m8-at-r32 to r8"); +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 |