C64 - Chip23128 has nothing to save so don't try to save things
This commit is contained in:
parent
4d37e8b4e4
commit
9effe326ad
|
@ -296,7 +296,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
||||||
Cpu.SyncState(ser);
|
Cpu.SyncState(ser);
|
||||||
ser.EndSection();
|
ser.EndSection();
|
||||||
|
|
||||||
ser.BeginSection("KernalRom"); SaveState.SyncObject(ser, KernalRom); ser.EndSection();
|
|
||||||
ser.BeginSection("Pla"); SaveState.SyncObject(ser, Pla); ser.EndSection();
|
ser.BeginSection("Pla"); SaveState.SyncObject(ser, Pla); ser.EndSection();
|
||||||
ser.BeginSection("Ram"); SaveState.SyncObject(ser, Ram); ser.EndSection();
|
ser.BeginSection("Ram"); SaveState.SyncObject(ser, Ram); ser.EndSection();
|
||||||
ser.BeginSection("Sid"); SaveState.SyncObject(ser, Sid); ser.EndSection();
|
ser.BeginSection("Sid"); SaveState.SyncObject(ser, Sid); ser.EndSection();
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
using BizHawk.Common;
|
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
||||||
{
|
{
|
||||||
|
@ -36,10 +35,5 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
||||||
{
|
{
|
||||||
return _rom[addr & 0x3FFF];
|
return _rom[addr & 0x3FFF];
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SyncState(Serializer ser)
|
|
||||||
{
|
|
||||||
SaveState.SyncObject(ser, this);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue