oops, forgot about savestates for mapper 186

This commit is contained in:
adelikat 2016-09-11 14:20:14 -04:00
parent 3f0d9fc397
commit 93148ebe9c
1 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
return true;
}
public override void SyncState(Serializer ser)
{
ser.Sync("SRAM", ref _SRAM);
ser.Sync("regs", ref regs);
base.SyncState(ser);
}
public override byte ReadPRG(int addr)
{
if (addr < 0x4000)