Merge pull request #334 from lioncash/cpsr

armemu: Fix retrieval of the CPSR in MRS instructions.
This commit is contained in:
bunnei 2014-12-23 09:44:04 -05:00
commit d31a94f06b

View file

@ -1724,7 +1724,7 @@ mainswitch:
TAKEABORT;
} else if ((BITS (0, 11) == 0) && (LHSReg == 15)) { /* MRS CPSR */
UNDEF_MRSPC;
DEST = ECC | EINT | EMODE;
DEST = ARMul_GetCPSR(state);
} else {
UNDEF_Test;
}