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; }