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

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

View File

@ -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;
}