From bc6d32a7258416f521417ae6b9e86e4d2fd65647 Mon Sep 17 00:00:00 2001 From: bird_egop Date: Wed, 16 Apr 2025 19:44:37 +0300 Subject: [PATCH] Fixed JP and JNP instruction types in TwoByteConditionalJumpHandler --- .../X86/Handlers/Jump/TwoByteConditionalJumpHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X86Disassembler/X86/Handlers/Jump/TwoByteConditionalJumpHandler.cs b/X86Disassembler/X86/Handlers/Jump/TwoByteConditionalJumpHandler.cs index 9e85996..052148f 100644 --- a/X86Disassembler/X86/Handlers/Jump/TwoByteConditionalJumpHandler.cs +++ b/X86Disassembler/X86/Handlers/Jump/TwoByteConditionalJumpHandler.cs @@ -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 ];