From 77b5eb36b6fd6cf01079efdec9e2d31ff4bb2b7a Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 16 Aug 2015 07:48:46 -0400 Subject: [PATCH] NESHawk - SxROM - according to bootgod, HVC-SNROM has 8kb CHR-ROM and no CHR-RAM, fix Asserts accordingly. Fixes Morita Kazuo no Shougi (J) --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs index d2315e3658..84aeae7fc5 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs @@ -397,8 +397,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES case "HVC-SMROM": //Hokkaidou Rensa Satsujin: Okhotsu ni Shoyu AssertPrg(256); AssertChr(0); AssertVram(8); AssertWram(0); break; + case "HVC-SNROM": // Morita Kazuo no Shougi (J) + AssertPrg(128, 256); AssertChr(8); AssertVram(0); AssertWram(8); + break; case "NES-SNROM": //dragon warrior 2 - case "HVC-SNROM": case "VIRGIN-SNROM": case "NES-SNWEPROM": // final fantasy 2 (proto) AssertPrg(128, 256); AssertChr(0); AssertVram(8); AssertWram(8);