From f3f70276df6440f5c1f95910d5299e3a91690a8c Mon Sep 17 00:00:00 2001 From: TiKevin83 Date: Sun, 27 Sep 2020 20:45:55 -0400 Subject: [PATCH] Because the real GBA version of the GBC BIOS is quite obscure, a fallback is needed --- .../Database/FirmwareDatabase.cs | 2 +- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 23 ++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs b/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs index f561a58531..5f5d9cf062 100644 --- a/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs +++ b/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs @@ -275,7 +275,7 @@ namespace BizHawk.Emulation.Common Firmware("GBC", "AGB", "Game Boy Color Boot Rom (GBA)"); Option("GBC", "AGB", File("fa5287e24b0fa533b3b5ef2b28a81245346c1a0f", 2304, "agb.bin", "Game Boy Color Boot Rom (GBA)"), FirmwareOptionStatus.Ideal); - Option("GBC", "AGB", File("1ecafa77ab3172193f3305486a857f443e28ebd9", 2304, "agb_gambatte.bin", "Game Boy Color Boot Rom (GBA, Gambatte RE)"), FirmwareOptionStatus.Bad); + Option("GBC", "AGB", File("1ecafa77ab3172193f3305486a857f443e28ebd9", 2304, "agb_gambatte.bin", "Game Boy Color Boot Rom (GBA, Gambatte RE)"), FirmwareOptionStatus.Acceptable); Firmware("PCFX", "BIOS", "PCFX bios"); var pcfxbios = File("1A77FD83E337F906AECAB27A1604DB064CF10074", 1024 * 1024, "PCFX_bios.bin", "PCFX BIOS 1.00"); diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index d5c3f746f0..1d9ef7f6dd 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -101,7 +101,28 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy if (_syncSettings.EnableBIOS) { - bios = comm.CoreFileProvider.GetFirmware(biosSystemId, biosId, true, "BIOS Not Found, Cannot Load. Change SyncSettings to run without BIOS."); + try + { + bios = comm.CoreFileProvider.GetFirmware(biosSystemId, biosId, true, "BIOS Not Found, Cannot Load. Change SyncSettings to run without BIOS."); + } + catch (MissingFirmwareException) + { + //If we're missing GBA firmware, create gambatte's reverse engineered firmware from a real GBC BIOS + if (_syncSettings.ConsoleMode == GambatteSyncSettings.ConsoleModeType.GBA) + { + bios = comm.CoreFileProvider.GetFirmware(biosSystemId, "World", true, "BIOS Not Found, Cannot Load. Change SyncSettings to run without BIOS."); + byte[] agbOverride = { 0xFF, 0x00, 0xCD, 0x03, 0x35, 0xAA, 0x31, 0x90, 0x94, 0x00, 0x00, 0x00, 0x00 }; + for (int i = 0xF3; i < 0x100; i++) + { + bios[i] = (byte)((agbOverride[i - 0xF3] + bios[i]) & 0xFF); + } + File.WriteAllBytes("Firmware/agb_gambatte.bin", bios); + } + else + { + bios = comm.CoreFileProvider.GetFirmware(biosSystemId, biosId, true, "BIOS Not Found, Cannot Load. Change SyncSettings to run without BIOS."); + } + } } else {