diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs index 62da32fbfd..0a664f0bb4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs @@ -16,7 +16,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public static extern void BizDestroy(IntPtr ctx); [DllImport(dll, CallingConvention = cc)] - public static extern IntPtr BizCreate(); + public static extern IntPtr BizCreate(byte[] bios); [DllImport(dll, CallingConvention = cc)] public static extern void BizReset(IntPtr ctx); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs index 2579ac80d7..2579bfc2f4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -21,14 +21,26 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA ServiceProvider = ser; CoreComm = comm; - core = LibmGBA.BizCreate(); + byte[] bios = null; + if (true) // TODO: config me + { + bios = comm.CoreFileProvider.GetFirmware("GBA", "Bios", true); + } + + if (bios != null && bios.Length != 16384) + { + throw new InvalidOperationException("BIOS must be exactly 16384 bytes!"); + } + core = LibmGBA.BizCreate(bios); if (core == IntPtr.Zero) - throw new InvalidOperationException("BizCreate() returned NULL!"); + { + throw new InvalidOperationException("BizCreate() returned NULL! Bad BIOS?"); + } try { if (!LibmGBA.BizLoad(core, file, file.Length)) { - throw new InvalidOperationException("BizLoad() returned FALSE!"); + throw new InvalidOperationException("BizLoad() returned FALSE! Bad ROM?"); } }