mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-08-23 09:30:27 +03:00
move handlers, remove bases
This commit is contained in:
@@ -3,7 +3,7 @@ namespace X86Disassembler.X86.Handlers.Group1;
|
||||
/// <summary>
|
||||
/// Handler for ADD r/m32, imm32 instruction (0x81 /0)
|
||||
/// </summary>
|
||||
public class AddImmToRm32Handler : Group1BaseHandler
|
||||
public class AddImmToRm32Handler : InstructionHandler
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the AddImmToRm32Handler class
|
||||
@@ -65,7 +65,7 @@ public class AddImmToRm32Handler : Group1BaseHandler
|
||||
byte rm = (byte)(modRM & 0x07);
|
||||
|
||||
// Decode the destination operand
|
||||
string destOperand = _modRMDecoder.DecodeModRM(mod, rm, false);
|
||||
string destOperand = ModRMDecoder.DecodeModRM(mod, rm, false);
|
||||
|
||||
// Read the immediate value
|
||||
if (position + 3 >= Length)
|
||||
|
Reference in New Issue
Block a user