From ae0543d1f371163cae4f51eb0a4987d3fdfd5fa6 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Tue, 19 Jun 2018 14:41:54 +0100 Subject: [PATCH] ZXHawk: disk drivelight now active for all operations that it should be --- .../SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs index f1b2f63274..62b42c7c09 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Hardware/Disk/NECUPD765.FDC.cs @@ -1172,6 +1172,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // was that the last parameter byte? if (CommCounter == ActiveCommand.ParameterByteCount) { + DriveLight = true; + // all parameter bytes received ClearResultBuffer(); Status0 = 0; @@ -1392,6 +1394,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum ExecCounter = byteCounter; ExecLength = byteCounter; ActivePhase = Phase.Execution; + DriveLight = true; break; } } @@ -1493,6 +1496,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum if (CommCounter == ActiveCommand.ParameterByteCount) { // all parameter bytes received - setup for execution phase + DriveLight = true; // clear exec buffer and status registers ClearExecBuffer(); @@ -1683,6 +1687,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum ExecCounter = byteCounter; ExecLength = byteCounter; ActivePhase = Phase.Execution; + DriveLight = true; break; } } @@ -1991,6 +1996,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum if (CommCounter == ActiveCommand.ParameterByteCount) { // all parameter bytes received + DriveLight = true; ActivePhase = Phase.Execution; ActiveCommand.CommandDelegate(); } @@ -2068,6 +2074,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum if (CommCounter == ActiveCommand.ParameterByteCount) { // all parameter bytes received + DriveLight = true; ActivePhase = Phase.Execution; ActiveCommand.CommandDelegate(); }