From d225c23cc17fdd007e6e834ed72e46bc55a20036 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 1 Mar 2011 07:31:59 +0000 Subject: [PATCH] [NES] SxROM: remove some guesses --- BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs index 86dbc2fa0f..b7e7b99f7c 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/SxROM.cs @@ -20,8 +20,10 @@ namespace BizHawk.Emulation.Consoles.Nintendo.Boards public MMC1() { //collect data about whether this is required here: - //megaman 2 requires it + //kid icarus requires it + //zelda doesnt; nor megaman2; nor blastermaster; nor metroid StandardReset(); + //well, lets leave it. } public enum Rev @@ -109,8 +111,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo.Boards return prg; else { - Debug.Assert(false, "not tested yet, and had to guess"); - return (prg + 1) & 0xF; + //"not tested very well yet! had to guess! + return (prg+1) & 0xF; } else if (prg_slot == 0) if (PRG_A14 == 0)