mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 20:01:17 +03:00
Add support for RET instruction with immediate operand (0xC2)
This commit is contained in:
parent
0fb3fd7311
commit
82ffd51a3e
@ -80,6 +80,7 @@ public class OpcodeMap
|
|||||||
OneByteOpcodes[0xCC] = "int3";
|
OneByteOpcodes[0xCC] = "int3";
|
||||||
OneByteOpcodes[0x90] = "nop";
|
OneByteOpcodes[0x90] = "nop";
|
||||||
OneByteOpcodes[0xC3] = "ret";
|
OneByteOpcodes[0xC3] = "ret";
|
||||||
|
OneByteOpcodes[0xC2] = "ret"; // RET imm16
|
||||||
OneByteOpcodes[0xE8] = "call";
|
OneByteOpcodes[0xE8] = "call";
|
||||||
OneByteOpcodes[0xE9] = "jmp";
|
OneByteOpcodes[0xE9] = "jmp";
|
||||||
OneByteOpcodes[0xEB] = "jmp";
|
OneByteOpcodes[0xEB] = "jmp";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user