mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
Merge pull request #614 from lioncash/mcr
arm: The CP15 Main ID register is not writeable
This commit is contained in:
commit
2dac2ea389
1 changed files with 1 additions and 3 deletions
|
@ -4709,9 +4709,7 @@ unsigned InterpreterMainLoop(ARMul_State* state) {
|
||||||
DEBUG_MSG;
|
DEBUG_MSG;
|
||||||
} else {
|
} else {
|
||||||
if (inst_cream->cp_num == 15) {
|
if (inst_cream->cp_num == 15) {
|
||||||
if(CRn == 0 && OPCODE_2 == 0 && CRm == 0) {
|
if (CRn == 1 && CRm == 0 && OPCODE_2 == 0) {
|
||||||
CP15_REG(CP15_MAIN_ID) = RD;
|
|
||||||
} else if(CRn == 1 && CRm == 0 && OPCODE_2 == 0) {
|
|
||||||
CP15_REG(CP15_CONTROL) = RD;
|
CP15_REG(CP15_CONTROL) = RD;
|
||||||
} else if (CRn == 1 && CRm == 0 && OPCODE_2 == 1) {
|
} else if (CRn == 1 && CRm == 0 && OPCODE_2 == 1) {
|
||||||
CP15_REG(CP15_AUXILIARY_CONTROL) = RD;
|
CP15_REG(CP15_AUXILIARY_CONTROL) = RD;
|
||||||
|
|
Loading…
Reference in a new issue