mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 14:38:00 -05:00
vfp: Get rid of the VFP_OFFSET macro
This commit is contained in:
@ -92,13 +92,15 @@ struct ARMul_State
|
||||
ARMword exclusive_state;
|
||||
ARMword exclusive_result;
|
||||
ARMword CP15[CP15_REGISTER_COUNT];
|
||||
ARMword VFP[3]; // FPSID, FPSCR, and FPEXC
|
||||
|
||||
// FPSID, FPSCR, and FPEXC
|
||||
ARMword VFP[VFP_SYSTEM_REGISTER_COUNT];
|
||||
// VFPv2 and VFPv3-D16 has 16 doubleword registers (D0-D16 or S0-S31).
|
||||
// VFPv3-D32/ASIMD may have up to 32 doubleword registers (D0-D31),
|
||||
// and only 32 singleword registers are accessible (S0-S31).
|
||||
ARMword ExtReg[VFP_REG_NUM];
|
||||
/* ---- End of the ordered registers ---- */
|
||||
|
||||
|
||||
ARMword RegBank[7][16]; // all the registers
|
||||
|
||||
ARMword NFlag, ZFlag, CFlag, VFlag, IFFlags; // Dummy flags for speed
|
||||
|
Reference in New Issue
Block a user