mirror of
https://github.com/tuz358/cpu-emulator.git
synced 2025-12-18 21:14:35 +03:00
Add opcode_83(0x83) instruction
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user