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

Fixed JP and JNP instruction types in TwoByteConditionalJumpHandler

This commit is contained in:
bird_egop 2025-04-16 19:44:37 +03:00
parent db96af74ff
commit bc6d32a725

View File

@ -19,7 +19,7 @@ public class TwoByteConditionalJumpHandler : 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
];