Add opcode_83(0x83) instruction

This commit is contained in:
tuz358
2018-03-05 11:37:10 +09:00
parent b161f2b85f
commit 5894c46d10
2 changed files with 21 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ public:
void add_rm32_r32(); // 0x01
void xor_rm32_r32(); // 0x31
void dec_ecx(); // 0x49
void opcode_83(); // 0x83
void mov_rm32_r32(); // 0x89
void nop(); // 0x90
void mov_ecx_imm32(); // 0xb9
@@ -37,5 +38,5 @@ public:
void hlt(); // 0xf4
void opcode_ff(); // 0xff
void cmp_rm32_imm8();
void cmp_rm32_imm8(); // called by opcode_83
};