diff options
author | Mat M <mathew1800@gmail.com> | 2016-05-26 19:03:00 -0400 |
---|---|---|
committer | Mat M <mathew1800@gmail.com> | 2016-05-26 19:03:00 -0400 |
commit | 031a9c57bba04c5e01a2ddcad0f48091a1ca88fc (patch) | |
tree | 9bcf9e6aa1eade024b4a2077c6156d4165e3c4ad /src/core/arm/dyncom | |
parent | 859c36c269a018918fc56763eb4f13916321c52a (diff) | |
parent | 501d0bc5edd9091c7c831a710e6ebff9839fad36 (diff) |
Merge pull request #1568 from JayFoxRox/fix-printf
Fix ftoi and disable VFPv3
Diffstat (limited to 'src/core/arm/dyncom')
-rw-r--r-- | src/core/arm/dyncom/arm_dyncom_dec.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_dec.cpp b/src/core/arm/dyncom/arm_dyncom_dec.cpp index 8cd6755cb..247d379e3 100644 --- a/src/core/arm/dyncom/arm_dyncom_dec.cpp +++ b/src/core/arm/dyncom/arm_dyncom_dec.cpp @@ -422,6 +422,10 @@ ARMDecodeStatus DecodeARMInstruction(u32 instr, s32* idx) { n = arm_instruction[i].attribute_value; base = 0; + // 3DS has no VFP3 support + if (arm_instruction[i].version == ARMVFP3) + continue; + while (n) { if (arm_instruction[i].content[base + 1] == 31 && arm_instruction[i].content[base] == 0) { // clrex |