ZXHawk: Disk Drive code tidy
This commit is contained in:
parent
66b7f37327
commit
0d4418a1cc
File diff suppressed because it is too large
Load Diff
|
@ -227,12 +227,6 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool FLAG_WRITEPROTECT = false;
|
public bool FLAG_WRITEPROTECT = false;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Storage for recal steps
|
|
||||||
/// One step for each indexpulse (track index) until track 0
|
|
||||||
/// </summary>
|
|
||||||
//public int RecalibrationCounter;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Storage for seek steps
|
/// Storage for seek steps
|
||||||
/// One step for each indexpulse (track index) until seeked track
|
/// One step for each indexpulse (track index) until seeked track
|
||||||
|
@ -311,21 +305,6 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int SectorIndex;
|
public int SectorIndex;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The current command that the drive is processing
|
|
||||||
/// </summary>
|
|
||||||
//public DriveMainState CurrentState = DriveMainState.None;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Current seek state
|
|
||||||
/// </summary>
|
|
||||||
//public SeekSubState SeekState = SeekSubState.Idle;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Seek int state
|
|
||||||
/// </summary>
|
|
||||||
//public SeekIntStatus SeekIntState = SeekIntStatus.Normal;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The currently loaded floppy disk
|
/// The currently loaded floppy disk
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -95,7 +95,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
StatesPerDriveTick = TStatesPerDriveCycle;
|
StatesPerDriveTick = TStatesPerDriveCycle;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called every cycle by the emulated machine
|
/// Called every cycle by the emulated machine
|
||||||
/// Simulates the floppy drive and updates execution phase bits
|
/// Simulates the floppy drive and updates execution phase bits
|
||||||
|
@ -117,6 +117,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
|
|
||||||
//RunDriveCycle();
|
//RunDriveCycle();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called by reads to the main status register
|
/// Called by reads to the main status register
|
||||||
|
|
Loading…
Reference in New Issue