From 6d93fe03f554a481b6e93b889cfea120fea49611 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 5 Feb 2020 07:55:01 -0500 Subject: [PATCH] MSXHawk: more testing options --- BizHawk.Emulation.Cores/Computers/MSX/MSX.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs b/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs index 16e08d042e..2f3007c817 100644 --- a/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs +++ b/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs @@ -58,9 +58,11 @@ namespace BizHawk.Emulation.Cores.Computers.MSX } } - //Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_test", true, "BIOS Not Found, Cannot Load"); + Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_jp", false, "BIOS Not Found, Cannot Load"); + + if (Bios == null) { Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_test", true, "BIOS Not Found, Cannot Load"); } //Basic = comm.CoreFileProvider.GetFirmware("MSX", "basic_test", true, "BIOS Not Found, Cannot Load"); - Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_jp", true, "BIOS Not Found, Cannot Load"); + Basic = new byte[0x4000]; @@ -101,7 +103,7 @@ namespace BizHawk.Emulation.Cores.Computers.MSX IntPtr MSX_Pntr { get; set; } = IntPtr.Zero; byte[] MSX_core = new byte[0x20000]; - public static byte[] Bios; + public static byte[] Bios = null; public static byte[] Basic; // Constants