all repos — mgba @ 8bc5ec422285bb84b3d133830f4d5e0ecc5742bd

mGBA Game Boy Advance Emulator

Roll out incorrect fix for Halt bug and apply proper fix
Jeffrey Pfau jeffrey@endrift.com
Sun, 05 May 2013 20:37:35 -0700
commit

8bc5ec422285bb84b3d133830f4d5e0ecc5742bd

parent

7ec435b94c9b982dd875a6b21798ce3c4a41be6a

4 files changed, 16 insertions(+), 12 deletions(-)

jump to
M src/gba/gba-bios.csrc/gba/gba-bios.c

@@ -179,6 +179,7 @@ gba->memory.io[REG_IME >> 1] = 1;

if (!gba->cpu.gprs[0] && gba->memory.io[REG_IF >> 1] & gba->cpu.gprs[1]) { break; } + gba->memory.io[REG_IF >> 1] = 0; ARMRaiseSWI(&gba->cpu); break; case 0x6:
M src/gba/gba.csrc/gba/gba.c

@@ -337,17 +337,23 @@ return 0;

} int GBAWaitForIRQ(struct GBA* gba) { + int irqs = gba->memory.io[REG_IF >> 1]; + int newIRQs = 0; + gba->memory.io[REG_IF >> 1] = 0; while (1) { if (gba->cpu.nextEvent == INT_MAX) { - return 0; + break; } else { gba->cpu.cycles = gba->cpu.nextEvent; GBAProcessEvents(&gba->board.d); if (gba->memory.io[REG_IF >> 1]) { - return 1; + newIRQs = gba->memory.io[REG_IF >> 1]; + break; } } } + gba->memory.io[REG_IF >> 1] = newIRQs | irqs; + return newIRQs; } int GBAHalt(struct GBA* gba) {
M src/gba/hle-bios.csrc/gba/hle-bios.c

@@ -1,5 +1,6 @@

#include "hle-bios.h" +const unsigned int hleBiosLength = 216; const unsigned char hleBios[] = { 0x06, 0x00, 0x00, 0xea, 0xfe, 0xff, 0xff, 0xea, 0x05, 0x00, 0x00, 0xea, 0xfe, 0xff, 0xff, 0xea, 0xfe, 0xff, 0xff, 0xea, 0x00, 0x00, 0xa0, 0xe1,

@@ -13,12 +14,10 @@ 0x0f, 0x50, 0xbd, 0xe8, 0x04, 0xf0, 0x5e, 0xe2, 0x04, 0x40, 0x2d, 0xe9,

0x04, 0xd0, 0x4d, 0xe2, 0xb0, 0x10, 0xcd, 0xe1, 0x01, 0x23, 0xa0, 0xe3, 0x02, 0x2c, 0x82, 0xe2, 0xb0, 0x00, 0xd2, 0xe1, 0xb2, 0x00, 0xcd, 0xe1, 0xb0, 0x10, 0xdd, 0xe1, 0x01, 0x10, 0x80, 0xe1, 0xb0, 0x10, 0xc2, 0xe1, - 0x00, 0x00, 0xe0, 0xe3, 0xb2, 0x00, 0xc2, 0xe1, 0x1f, 0x00, 0xa0, 0xe3, - 0x00, 0xf0, 0x29, 0xe1, 0x00, 0x00, 0x02, 0xef, 0xd3, 0x00, 0xa0, 0xe3, - 0x00, 0xf0, 0x29, 0xe1, 0x01, 0x03, 0xa0, 0xe3, 0xb8, 0x20, 0x50, 0xe1, - 0xb0, 0x10, 0xdd, 0xe1, 0x02, 0x10, 0x11, 0xe0, 0x02, 0x10, 0x21, 0x10, - 0xb8, 0x10, 0x40, 0x11, 0xb2, 0x00, 0xdd, 0xe1, 0x01, 0x13, 0xa0, 0xe3, - 0x02, 0x1c, 0x81, 0xe2, 0xb0, 0x00, 0xc1, 0xe1, 0xe6, 0xff, 0xff, 0x0a, - 0x04, 0xd0, 0x8d, 0xe2, 0x04, 0x80, 0xbd, 0xe8 + 0x1f, 0x00, 0xa0, 0xe3, 0x00, 0xf0, 0x29, 0xe1, 0x00, 0x00, 0x02, 0xef, + 0xd3, 0x00, 0xa0, 0xe3, 0x00, 0xf0, 0x29, 0xe1, 0x01, 0x03, 0xa0, 0xe3, + 0xb8, 0x20, 0x50, 0xe1, 0xb0, 0x10, 0xdd, 0xe1, 0x02, 0x10, 0x11, 0xe0, + 0x02, 0x10, 0x21, 0x10, 0xb8, 0x10, 0x40, 0x11, 0xb2, 0x00, 0xdd, 0xe1, + 0x01, 0x13, 0xa0, 0xe3, 0x02, 0x1c, 0x81, 0xe2, 0xb0, 0x00, 0xc1, 0xe1, + 0xe8, 0xff, 0xff, 0x0a, 0x04, 0xd0, 0x8d, 0xe2, 0x04, 0x80, 0xbd, 0xe8 }; -const unsigned int hleBiosLength = 224;
M src/gba/hle-bios.ssrc/gba/hle-bios.s

@@ -47,8 +47,6 @@ strh r0, [sp, #2]

ldrh r1, [sp, #0] orr r1, r0, r1 strh r1, [r2, #0] -mov r0, #0xFFFFFFFF -strh r0, [r2, #2] mov r0, #0x1F msr cpsr, r0 swi #0x020000