0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 08:18:36 +03:00

more cleanup

This commit is contained in:
bird_egop
2025-04-15 02:42:47 +03:00
parent 49f1d7d221
commit abe4d38d4b
97 changed files with 160 additions and 219 deletions

View File

@ -1,6 +1,6 @@
namespace X86Disassembler.X86.Handlers.Jump;
using X86Disassembler.X86.Operands;
using Operands;
/// <summary>
/// Handler for conditional jump instructions (0x70-0x7F)

View File

@ -1,6 +1,6 @@
namespace X86Disassembler.X86.Handlers.Jump;
using X86Disassembler.X86.Operands;
using Operands;
/// <summary>
/// Handler for JGE rel8 instruction (0x7D)

View File

@ -1,6 +1,6 @@
namespace X86Disassembler.X86.Handlers.Jump;
using X86Disassembler.X86.Operands;
using Operands;
/// <summary>
/// Handler for JMP rel32 instruction (0xE9)

View File

@ -1,6 +1,6 @@
namespace X86Disassembler.X86.Handlers.Jump;
using X86Disassembler.X86.Operands;
using Operands;
/// <summary>
/// Handler for JMP rel8 instruction (0xEB)

View File

@ -1,6 +1,6 @@
namespace X86Disassembler.X86.Handlers.Jump;
using X86Disassembler.X86.Operands;
using Operands;
/// <summary>
/// Handler for two-byte conditional jump instructions (0x0F 0x80-0x8F)
@ -44,8 +44,7 @@ public class TwoByteConditionalJumpHandler : InstructionHandler
{
return false;
}
int position = Decoder.GetPosition();
if (!Decoder.CanReadByte())
{
return false;