GBA BIOS: Fix BIOS prefetch after returning from an HLE SWI

This commit is contained in:
Jeffrey Pfau 2015-01-14 00:51:37 -08:00
parent cf88e47a8a
commit e7dd041618
1 changed files with 1 additions and 0 deletions

View File

@ -291,6 +291,7 @@ void GBASwi16(struct ARMCore* cpu, int immediate) {
default:
GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02X", immediate);
}
gba->memory.biosPrefetch = 0xE3A02004;
}
void GBASwi32(struct ARMCore* cpu, int immediate) {