80a81,82
> MISCREG_FPSCR_QC, // Cumulative saturation flag
> MISCREG_FPSCR_EXC, // Cumulative FP exception flags
209c211,212
< "fpsr", "fpsid", "fpscr", "fpexc", "mvfr0", "mvfr1",
---
> "fpsr", "fpsid", "fpscr", "fpscr_qc", "fpscr_exc", "fpexc",
> "mvfr0", "mvfr1",
365c368,372
< static const uint32_t FpCondCodesMask = 0xF800009F;
---
> static const uint32_t FpCondCodesMask = 0xF0000000;
> // This mask selects the cumulative FP exception flags of the FPSCR.
> static const uint32_t FpscrExcMask = 0x0000009F;
> // This mask selects the cumulative saturation flag of the FPSCR.
> static const uint32_t FpscrQcMask = 0x08000000;