mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
Fixed several instruction handling issues: 1) Added proper handling for zero displacements in memory operands, 2) Fixed large unsigned displacement values display, 3) Added CmpEaxImmHandler for CMP EAX, imm32 instruction, 4) Fixed JP and JNP conditional jump instruction types
This commit is contained in:
@ -19,7 +19,7 @@ public class ConditionalJumpHandler : InstructionHandler
|
||||
[
|
||||
InstructionType.Jo, InstructionType.Jno, InstructionType.Jb, InstructionType.Jae,
|
||||
InstructionType.Jz, InstructionType.Jnz, InstructionType.Jbe, InstructionType.Ja,
|
||||
InstructionType.Js, InstructionType.Jns, InstructionType.Unknown, InstructionType.Unknown,
|
||||
InstructionType.Js, InstructionType.Jns, InstructionType.Jp, InstructionType.Jnp,
|
||||
InstructionType.Jl, InstructionType.Jge, InstructionType.Jle, InstructionType.Jg
|
||||
];
|
||||
|
||||
|
Reference in New Issue
Block a user