mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[CPU] fprs() should return std::span<u32, 32> (Fixes memory corruption bug in threads.cpp)
This commit is contained in:
parent
fde93381a5
commit
2f3bc5d38e
1 changed files with 1 additions and 3 deletions
|
@ -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<u32, 64> fprs() { return jit->ExtRegs(); }
|
||||
std::span<u32, 32> fprs() { return std::span(jit->ExtRegs()).first<32>(); }
|
||||
|
||||
void setCPSR(u32 value) {
|
||||
jit->SetCpsr(value);
|
||||
|
|
Loading…
Add table
Reference in a new issue