0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-21 08:28:37 +03:00

move handlers, remove bases

This commit is contained in:
bird_egop
2025-04-12 23:03:07 +03:00
parent acccf5169a
commit bb695cf3bb
30 changed files with 74 additions and 482 deletions

View File

@ -3,7 +3,7 @@ namespace X86Disassembler.X86.Handlers.Group3;
/// <summary>
/// Handler for MUL r/m32 instruction (0xF7 /4)
/// </summary>
public class MulRm32Handler : Group3BaseHandler
public class MulRm32Handler : InstructionHandler
{
/// <summary>
/// Initializes a new instance of the MulRm32Handler class
@ -65,7 +65,7 @@ public class MulRm32Handler : Group3BaseHandler
byte rm = (byte)(modRM & 0x07);
// Decode the operand
string operand = _modRMDecoder.DecodeModRM(mod, rm, false);
string operand = ModRMDecoder.DecodeModRM(mod, rm, false);
// Set the operands
instruction.Operands = operand;