Fixed immediate value formatting in Group1 instruction handlers

This commit is contained in:
bird_egop
2025-04-13 16:00:46 +03:00
parent 2c85192d13
commit 565158d9bd
65 changed files with 1318 additions and 254 deletions
@@ -44,8 +44,8 @@ public class PushImm32Handler : InstructionHandler
return false;
}
// Set the operands
instruction.Operands = $"0x{imm32:X}";
// Set the operands with 8-digit padding to match test expectations
instruction.Operands = $"0x{imm32:X8}";
return true;
}