From 39797513b257f75546a4a3c317e5569cb7aa4514 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 27 May 2017 14:13:51 -0500 Subject: [PATCH] c64 - add another variable to savestates --- .../Computers/Commodore64/C64.Motherboard.cs | 1 + .../Computers/Commodore64/Serial/Drive1541.cs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs index 2523735844..3ba3068b4e 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs @@ -72,6 +72,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 default: throw new System.Exception(); } + CartPort = new CartridgePort(); Cassette = new CassettePort(); ColorRam = new Chip2114(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs index 26057ae6d8..14437cde11 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs @@ -65,6 +65,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial ser.Sync("BitHistory", ref _bitHistory); ser.Sync("BitsRemainingInLatchedByte", ref _bitsRemainingInLatchedByte); ser.Sync("Sync", ref _sync); + ser.Sync("ByteReady", ref _byteReady); ser.Sync("DriveCpuClockNumerator", ref _driveCpuClockNum); ser.Sync("TrackNumber", ref _trackNumber); ser.Sync("MotorEnabled", ref _motorEnabled); @@ -89,6 +90,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial ser.Sync("SystemDriveCpuRatioDifference", ref _ratioDifference); ser.Sync("DriveLightOffTime", ref _driveLightOffTime); ser.Sync("TrackImageData", ref _trackImageData[1]); + ser.Sync("DiskDensityCounter", ref _diskDensityCounter); ser.Sync("DiskSupplementaryCounter", ref _diskSupplementaryCounter); ser.Sync("DiskFluxReversalDetected", ref _diskFluxReversalDetected);