From 6c4b1ed2da846cc83403841990c7a513dbbd41a6 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 18 Jan 2014 15:57:43 +0000 Subject: [PATCH] nes: fix esper bouken tai, ff2 (U) --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs | 1 + BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/UxROM.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs index c96839123d..e810325f35 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs @@ -390,6 +390,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES 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); break; case "SxROM-JUNK": diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/UxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/UxROM.cs index ca8a186e66..b30bead6c4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/UxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/UxROM.cs @@ -54,6 +54,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES case "NES-UOROM": //paperboy 2 case "HVC-UOROM": + case "JALECO-JF-15": case "JALECO-JF-18": AssertPrg(256); AssertChr(0); AssertVram(8); AssertWram(0); break;