mirror of https://github.com/mgba-emu/mgba.git
Fix entering SWI mode
This commit is contained in:
parent
bd9714b540
commit
21b9222357
|
@ -145,7 +145,7 @@ void ARMRaiseSWI(struct ARMCore* cpu) {
|
|||
}
|
||||
ARMSetPrivilegeMode(cpu, MODE_SUPERVISOR);
|
||||
cpu->cpsr.priv = MODE_IRQ;
|
||||
cpu->gprs[ARM_LR] = cpu->gprs[ARM_PC] - instructionWidth + WORD_SIZE_ARM;
|
||||
cpu->gprs[ARM_LR] = cpu->gprs[ARM_PC] - instructionWidth;
|
||||
cpu->gprs[ARM_PC] = BASE_SWI + WORD_SIZE_ARM;
|
||||
cpu->memory->setActiveRegion(cpu->memory, cpu->gprs[ARM_PC]);
|
||||
_ARMSetMode(cpu, MODE_ARM);
|
||||
|
|
Loading…
Reference in New Issue