mirror of https://github.com/mgba-emu/mgba.git
GBA: Add missing RTC overrides for Legendz games
This commit is contained in:
parent
6b0b9f820c
commit
7fa93d1694
1
CHANGES
1
CHANGES
|
@ -5,6 +5,7 @@ Features:
|
||||||
Emulation fixes:
|
Emulation fixes:
|
||||||
- ARM: Fix ALU reading PC after shifting
|
- ARM: Fix ALU reading PC after shifting
|
||||||
- ARM: Fix STR storing PC after address calculation
|
- ARM: Fix STR storing PC after address calculation
|
||||||
|
- GBA: Add missing RTC overrides for Legendz games
|
||||||
- GBA BIOS: Implement dummy sound driver calls
|
- GBA BIOS: Implement dummy sound driver calls
|
||||||
- GBA BIOS: Improve HLE BIOS timing
|
- GBA BIOS: Improve HLE BIOS timing
|
||||||
- GBA DMA: Linger last DMA on bus (fixes mgba.io/i/301 and mgba.io/i/1320)
|
- GBA DMA: Linger last DMA on bus (fixes mgba.io/i/301 and mgba.io/i/1320)
|
||||||
|
|
|
@ -71,6 +71,13 @@ static const struct GBACartridgeOverride _overrides[] = {
|
||||||
// Koro Koro Puzzle - Happy Panechu!
|
// Koro Koro Puzzle - Happy Panechu!
|
||||||
{ "KHPJ", SAVEDATA_EEPROM, HW_TILT, IDLE_LOOP_NONE, false },
|
{ "KHPJ", SAVEDATA_EEPROM, HW_TILT, IDLE_LOOP_NONE, false },
|
||||||
|
|
||||||
|
// Legendz - Yomigaeru Shiren no Shima
|
||||||
|
{ "BLJJ", SAVEDATA_FLASH512, HW_RTC, IDLE_LOOP_NONE, false },
|
||||||
|
{ "BLJK", SAVEDATA_FLASH512, HW_RTC, IDLE_LOOP_NONE, false },
|
||||||
|
|
||||||
|
// Legendz - Sign of Nekuromu
|
||||||
|
{ "BLVJ", SAVEDATA_FLASH512, HW_RTC, IDLE_LOOP_NONE, false },
|
||||||
|
|
||||||
// Mega Man Battle Network
|
// Mega Man Battle Network
|
||||||
{ "AREE", SAVEDATA_SRAM, HW_NONE, 0x800032E, false },
|
{ "AREE", SAVEDATA_SRAM, HW_NONE, 0x800032E, false },
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue