diff --git a/include/cpu_dynarmic.hpp b/include/cpu_dynarmic.hpp index 2682d0ee..daa25d03 100644 --- a/include/cpu_dynarmic.hpp +++ b/include/cpu_dynarmic.hpp @@ -138,9 +138,7 @@ public: // Get reference to array of FPRs. This array consists of the FPRs as single precision values // Hence why its base type is u32 - // Note: Dynarmic keeps 64 VFP registers as VFPv3 extends the VFP register set to 64 registers. - // However the 3DS ARM11 is an ARMv6k processor with VFPv2, so only the first 32 registers are actually used - std::span fprs() { return jit->ExtRegs(); } + std::span fprs() { return std::span(jit->ExtRegs()).first<32>(); } void setCPSR(u32 value) { jit->SetCpsr(value);