1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Improve XMM integer displays

This commit is contained in:
Brian Fiete 2022-01-07 10:31:26 -05:00
parent 88183dbae7
commit 6854c404d8
5 changed files with 80 additions and 33 deletions

View file

@ -340,11 +340,16 @@ public:
double d[2];
};
struct XmmIReg
struct XmmI32Reg
{
int32 i[4];
};
struct XmmI64Reg
{
int64 i[2];
};
union
{
IntRegs mIntRegs;
@ -355,7 +360,8 @@ public:
{
XmmReg mXmmRegsArray[kNumXmmRegs];
XmmDReg mXmmDRegsArray[kNumXmmRegs];
XmmIReg mXmmIRegsARray[kNumXmmRegs];
XmmI32Reg mXmmI32RegsARray[kNumXmmRegs];
XmmI64Reg mXmmI64RegsARray[kNumXmmRegs];
};
X64CPURegisters()