[NES] SxROM: remove some guesses

This commit is contained in:
zeromus 2011-03-01 07:31:59 +00:00
parent c21d92f694
commit d225c23cc1
1 changed files with 5 additions and 3 deletions

View File

@ -20,8 +20,10 @@ namespace BizHawk.Emulation.Consoles.Nintendo.Boards
public MMC1() public MMC1()
{ {
//collect data about whether this is required here: //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(); StandardReset();
//well, lets leave it.
} }
public enum Rev public enum Rev
@ -109,8 +111,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo.Boards
return prg; return prg;
else else
{ {
Debug.Assert(false, "not tested yet, and had to guess"); //"not tested very well yet! had to guess!
return (prg + 1) & 0xF; return (prg+1) & 0xF;
} }
else if (prg_slot == 0) else if (prg_slot == 0)
if (PRG_A14 == 0) if (PRG_A14 == 0)