mirror of https://github.com/mgba-emu/mgba.git
DS Memory: Fix BIOS9 waitstates
This commit is contained in:
parent
d3fe231758
commit
46f01969d8
|
@ -707,7 +707,11 @@ static void DS9SetActiveRegion(struct ARMCore* cpu, uint32_t address) {
|
||||||
cpu->memory.activeRegion = _deadbeef;
|
cpu->memory.activeRegion = _deadbeef;
|
||||||
cpu->memory.activeMask = 0;
|
cpu->memory.activeMask = 0;
|
||||||
}
|
}
|
||||||
break;
|
cpu->memory.activeSeqCycles32 = 0;
|
||||||
|
cpu->memory.activeSeqCycles16 = 0;
|
||||||
|
cpu->memory.activeNonseqCycles32 = 0;
|
||||||
|
cpu->memory.activeNonseqCycles16 = 0;
|
||||||
|
return;
|
||||||
default:
|
default:
|
||||||
jump_error:
|
jump_error:
|
||||||
memory->activeRegion = -1;
|
memory->activeRegion = -1;
|
||||||
|
|
Loading…
Reference in New Issue