From d3f1d0f6ac0abfba6f7bd3d1ce23bb598eec2080 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 27 Sep 2020 22:32:55 -0400 Subject: [PATCH] Revert "Because the real GBA version of the GBC BIOS is quite obscure, a fallback is needed" This reverts commit f3f70276df6440f5c1f95910d5299e3a91690a8c. --- .../Database/FirmwareDatabase.cs | 2 +- .../Consoles/Nintendo/Gameboy/Gambatte.cs | 23 +------------------ 2 files changed, 2 insertions(+), 23 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs b/src/BizHawk.Emulation.Common/Database/FirmwareDatabase.cs index 5f5d9cf062..f561a58531 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.Acceptable); + Option("GBC", "AGB", File("1ecafa77ab3172193f3305486a857f443e28ebd9", 2304, "agb_gambatte.bin", "Game Boy Color Boot Rom (GBA, Gambatte RE)"), FirmwareOptionStatus.Bad); 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 1d9ef7f6dd..d5c3f746f0 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -101,28 +101,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy if (_syncSettings.EnableBIOS) { - 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."); - } - } + bios = comm.CoreFileProvider.GetFirmware(biosSystemId, biosId, true, "BIOS Not Found, Cannot Load. Change SyncSettings to run without BIOS."); } else {