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 b7698ae962
commit 3ec8afc507
1 changed files with 1 additions and 0 deletions

View File

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