From f6c23270ccc514de042fad073c00f3e4700ef7f1 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 7 Jan 2018 14:57:41 -0500 Subject: [PATCH] FDS: Fix Behaviour of disk status bit --- .../Consoles/Nintendo/NES/FDS/RamAdapter.cs | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/RamAdapter.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/RamAdapter.cs index 9c86f953e7..540e471764 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/RamAdapter.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/RamAdapter.cs @@ -214,7 +214,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES disk = null; state = RamAdapterState.IDLE; SetCycles(); - Console.WriteLine("FDS: Disk ejected"); + //Console.WriteLine("FDS: Disk ejected"); DriveLightCallback?.Invoke(false); } @@ -234,7 +234,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES this.writeprotect = writeprotect; state = RamAdapterState.INSERTING; SetCycles(); - Console.WriteLine("FDS: Disk Inserted"); + //Console.WriteLine("FDS: Disk Inserted"); originaldisk = (byte[])disk.Clone(); DriveLightCallback?.Invoke(false); } @@ -388,7 +388,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } } if ((value & 2) != 0) + { transferreset = true; + } + else + { + transferreset = false; + } + if ((cached4025 & 0x40) == 0 && (value & 0x40) != 0) { lookingforendofgap = true; @@ -469,6 +476,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES if (disk != null && state != RamAdapterState.INSERTING && !writeprotect) ret &= unchecked((byte)~0x04); + //Console.Write(state); + return ret; } @@ -491,9 +500,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES Write(); if (diskpos >= disksize) { - // Console.WriteLine("FDS: End of Disk"); + //Console.WriteLine("FDS: End of Disk"); state = RamAdapterState.RESET; - transferreset = false; + //transferreset = false; //numcrc = 0; DriveLightCallback?.Invoke(false); } @@ -505,9 +514,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES state = RamAdapterState.IDLE; diskpos = 0; SetCycles(); - transferreset = false; + //transferreset = false; //numcrc = 0; - // Console.WriteLine("FDS: Return or Insert Complete"); + //Console.WriteLine("FDS: Return or Insert Complete"); DriveLightCallback?.Invoke(false); break; case RamAdapterState.SPINUP: