diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs index 9275a02856..3f9d6670ab 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs @@ -353,6 +353,9 @@ namespace BizHawk.Emulation.Consoles.Nintendo case "HVC-SIROM": //Igo: Kyuu Roban Taikyoku AssertPrg(32); AssertChr(16); AssertVram(0); AssertWram(8); break; + case "HVC-SJROM": //zombie hunter.. but it has no wram???? + AssertPrg(128); AssertChr(32); AssertVram(0); AssertWram(0); + break; case "NES-SJROM": //air fortress AssertPrg(128, 256); AssertChr(16, 32, 64); AssertVram(0); AssertWram(8); break;