From 43ac625a95d8ee5486eefa19a02a70c8b335c80c Mon Sep 17 00:00:00 2001 From: Anthony Konzel Date: Tue, 1 Mar 2016 14:01:56 -0600 Subject: [PATCH] Apply savestate changes to disk subsystem. --- .../Serial/Drive1541.FluxTransitions.cs | 13 ++- .../Serial/Drive1541.IDisassemblable.cs | 3 + .../Computers/Commodore64/Serial/Drive1541.cs | 27 +++++- .../Commodore64/Serial/SerialPort.cs | 7 ++ .../Commodore64/Serial/SerialPortDevice.cs | 97 ++++++++++--------- 5 files changed, 96 insertions(+), 51 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.FluxTransitions.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.FluxTransitions.cs index 3ff65b0bb4..cf1df7607b 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.FluxTransitions.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.FluxTransitions.cs @@ -8,18 +8,29 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial { public sealed partial class Drive1541 { + [SaveState.DoNotSave] private const long LEHMER_RNG_PRIME = 48271; - + [SaveState.SaveWithName("DiskDensityCounter")] private int _diskDensityCounter; // density .. 16 + [SaveState.SaveWithName("DiskSupplementaryCounter")] private int _diskSupplementaryCounter; // 0 .. 16 + [SaveState.SaveWithName("DiskFluxReversalDetected")] private bool _diskFluxReversalDetected; + [SaveState.SaveWithName("DiskBitsRemainingInDataEntry")] private int _diskBitsLeft; + [SaveState.SaveWithName("DiskDataEntryIndex")] private int _diskByteOffset; + [SaveState.SaveWithName("DiskDataEntry")] private int _diskBits; + [SaveState.SaveWithName("DiskCurrentCycle")] private int _diskCycle; + [SaveState.SaveWithName("DiskDensityConfig")] private int _diskDensity; + [SaveState.SaveWithName("PreviousCA1")] private bool _previousCa1; + [SaveState.SaveWithName("CountsBeforeRandomTransition")] private int _countsBeforeRandomTransition; + [SaveState.SaveWithName("CurrentRNG")] private int _rngCurrent; // Lehmer RNG diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.IDisassemblable.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.IDisassemblable.cs index 4ad9631bea..4803933ae2 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.IDisassemblable.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.IDisassemblable.cs @@ -8,11 +8,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial { public sealed partial class Drive1541 : IDisassemblable { + [SaveState.DoNotSave] IEnumerable IDisassemblable.AvailableCpus { get { yield return "Disk Drive 6502"; } } + [SaveState.DoNotSave] string IDisassemblable.Cpu { get { return "Disk Drive 6502"; } @@ -21,6 +23,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial } } + [SaveState.DoNotSave] string IDisassemblable.PCRegisterName { get { return "PC"; } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs index 5e00181a6e..c69b185509 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/Drive1541.cs @@ -13,28 +13,49 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial { public sealed partial class Drive1541 : SerialPortDevice { + [SaveState.SaveWithName("Disk")] private Disk _disk; + [SaveState.SaveWithName("BitHistory")] private int _bitHistory; + [SaveState.SaveWithName("BitsRemainingInLatchedByte")] private int _bitsRemainingInLatchedByte; + [SaveState.SaveWithName("Sync")] private bool _sync; + [SaveState.SaveWithName("ByteReady")] private bool _byteReady; - [SaveState.DoNotSave] private readonly int _driveCpuClockNum; + [SaveState.SaveWithName("DriveCpuClockNumerator")] + private readonly int _driveCpuClockNum; + [SaveState.SaveWithName("TrackNumber")] private int _trackNumber; + [SaveState.SaveWithName("MotorEnabled")] private bool _motorEnabled; + [SaveState.SaveWithName("LedEnabled")] private bool _ledEnabled; + [SaveState.SaveWithName("MotorStep")] private int _motorStep; + [SaveState.DoNotSave] private int _via0PortBtemp; + [SaveState.SaveWithName("CPU")] private readonly MOS6502X _cpu; + [SaveState.SaveWithName("RAM")] private readonly int[] _ram; + [SaveState.SaveWithName("VIA0")] public readonly Via Via0; + [SaveState.SaveWithName("VIA1")] public readonly Via Via1; + [SaveState.SaveWithName("SystemCpuClockNumerator")] private readonly int _cpuClockNum; + [SaveState.SaveWithName("SystemDriveCpuRatioDifference")] private int _ratioDifference; + [SaveState.SaveWithName("DriveLightOffTime")] private int _driveLightOffTime; - [SaveState.DoNotSave] private int[] _trackImageData = new int[1]; - + [SaveState.DoNotSave] + private int[] _trackImageData = new int[1]; + [SaveState.DoNotSave] public Func ReadIec = () => 0xFF; + [SaveState.DoNotSave] public Action DebuggerStep; + [SaveState.DoNotSave] public readonly Chip23128 DriveRom; public Drive1541(int clockNum, int clockDen) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPort.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPort.cs index 07cc758df4..9e16296ad2 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPort.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPort.cs @@ -10,11 +10,16 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial { public sealed class SerialPort : IDriveLight { + [SaveState.DoNotSave] public Func ReadMasterAtn = () => true; + [SaveState.DoNotSave] public Func ReadMasterClk = () => true; + [SaveState.DoNotSave] public Func ReadMasterData = () => true; + [SaveState.SaveWithName("Device")] private SerialPortDevice _device; + [SaveState.SaveWithName("Connected")] private bool _connected; public void HardReset() @@ -75,7 +80,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial _device.ReadMasterData = () => ReadMasterData(); } + [SaveState.DoNotSave] public bool DriveLightEnabled { get { return true; } } + [SaveState.DoNotSave] public bool DriveLightOn { get { return ReadDeviceLight(); } } } } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPortDevice.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPortDevice.cs index 150ec49940..bee7d35688 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPortDevice.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Serial/SerialPortDevice.cs @@ -1,47 +1,50 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using BizHawk.Common; - -namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial -{ - public abstract class SerialPortDevice - { - public Func ReadMasterAtn; - public Func ReadMasterClk; - public Func ReadMasterData; - - public virtual void ExecutePhase() - { - } - - public virtual void ExecuteDeferred(int cycles) - { - } - - public virtual void HardReset() - { - } - - public virtual bool ReadDeviceClk() - { - return true; - } - - public virtual bool ReadDeviceData() - { - return true; - } - - public virtual bool ReadDeviceLight() - { - return false; - } - - public virtual void SyncState(Serializer ser) - { - SaveState.SyncObject(ser, this); - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using BizHawk.Common; + +namespace BizHawk.Emulation.Cores.Computers.Commodore64.Serial +{ + public abstract class SerialPortDevice + { + [SaveState.DoNotSave] + public Func ReadMasterAtn; + [SaveState.DoNotSave] + public Func ReadMasterClk; + [SaveState.DoNotSave] + public Func ReadMasterData; + + public virtual void ExecutePhase() + { + } + + public virtual void ExecuteDeferred(int cycles) + { + } + + public virtual void HardReset() + { + } + + public virtual bool ReadDeviceClk() + { + return true; + } + + public virtual bool ReadDeviceData() + { + return true; + } + + public virtual bool ReadDeviceLight() + { + return false; + } + + public virtual void SyncState(Serializer ser) + { + SaveState.SyncObject(ser, this); + } + } +}