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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user