0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-05-19 11:51:17 +03:00

Add support for RET instruction with immediate operand (0xC2)

This commit is contained in:
bird_egop 2025-04-12 19:36:46 +03:00
parent 0fb3fd7311
commit 82ffd51a3e

View File

@ -80,6 +80,7 @@ public class OpcodeMap
OneByteOpcodes[0xCC] = "int3";
OneByteOpcodes[0x90] = "nop";
OneByteOpcodes[0xC3] = "ret";
OneByteOpcodes[0xC2] = "ret"; // RET imm16
OneByteOpcodes[0xE8] = "call";
OneByteOpcodes[0xE9] = "jmp";
OneByteOpcodes[0xEB] = "jmp";