nes mapper28: correct power on behavior. it seems to work well enough

This commit is contained in:
goyuken 2012-11-04 00:28:46 +00:00
parent a7b2be48e2
commit 807b86f8b3
1 changed files with 5 additions and 0 deletions

View File

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