From 807b86f8b37d2060673eee7bcc0656ac8914e4b0 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 4 Nov 2012 00:28:46 +0000 Subject: [PATCH] nes mapper28: correct power on behavior. it seems to work well enough --- BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Mapper028.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Mapper028.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Mapper028.cs index 761a9e3342..6455713fc9 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Mapper028.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Mapper028.cs @@ -38,6 +38,11 @@ namespace BizHawk.Emulation.Consoles.Nintendo prg_mask_16k = Cart.prg_size / 16 - 1; Cart.wram_size = 0; Cart.vram_size = 32; + // the only part of initial state that is important is that + // C000:FFFF contains the tail end of the rom + outer = 63; + prg = 15; + Sync(); return true; }