From 76318fbc7a522e31eb3af7f4317e40cf2853e549 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Thu, 14 Jun 2018 09:13:09 +0100 Subject: [PATCH] ZXHawk: Do ULA processing every cycle --- .../Computers/SinclairSpectrum/Machine/ULA.cs | 3 +++ .../Machine/ZXSpectrum128K/ZX128.Memory.cs | 4 ++-- .../Machine/ZXSpectrum128K/ZX128.Port.cs | 2 +- .../ZXSpectrum128KPlus2a/ZX128Plus2a.Memory.cs | 12 ++++++------ .../Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Port.cs | 2 +- .../Machine/ZXSpectrum128KPlus3/ZX128Plus3.Memory.cs | 12 ++++++------ .../Machine/ZXSpectrum128KPlus3/ZX128Plus3.Port.cs | 2 +- .../SinclairSpectrum/Machine/ZXSpectrum16K/ZX16.cs | 2 +- .../Machine/ZXSpectrum48K/ZX48.Memory.cs | 2 +- .../Machine/ZXSpectrum48K/ZX48.Port.cs | 2 +- 10 files changed, 23 insertions(+), 20 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ULA.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ULA.cs index 6e5132bcd6..9a8de555ce 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ULA.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ULA.cs @@ -143,6 +143,9 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum /// public virtual void CycleClock(long totalCycles) { + // render the screen + RenderScreen((int)_machine.CurrentFrameCycle); + // has more than one cycle past since this last ran // (this can be true if contention has taken place) var ticksToProcess = totalCycles - LastULATick; diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Memory.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Memory.cs index 6c48210679..770d861c5f 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Memory.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Memory.cs @@ -134,7 +134,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // RAM 0x4000 (RAM5 - Bank5 or shadow bank RAM7) case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; @@ -163,7 +163,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum RAM4[addr % 0x4000] = value; break; case 5: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; case 6: diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Port.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Port.cs index b34d860f86..256716f315 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128K/ZX128.Port.cs @@ -150,7 +150,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // Border - LSB 3 bits hold the border colour if (ULADevice.BorderColor != (value & BORDER_BIT)) { - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); ULADevice.BorderColor = value & BORDER_BIT; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Memory.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Memory.cs index ebb6f7c399..323e683b94 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Memory.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Memory.cs @@ -236,11 +236,11 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum break; case 1: case 2: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; case 3: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } @@ -267,7 +267,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum RAM3[addr % 0x4000] = value; break; case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } @@ -302,7 +302,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // RAM 0x4000 (RAM5 - Bank5 only) case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; @@ -331,14 +331,14 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum RAM4[addr % 0x4000] = value; break; case 5: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; case 6: RAM6[addr % 0x4000] = value; break; case 7: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Port.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Port.cs index cf43ced6e5..57fab06df4 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus2a/ZX128Plus2a.Port.cs @@ -148,7 +148,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // Border - LSB 3 bits hold the border colour if (ULADevice.BorderColor != (value & BORDER_BIT)) { - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); ULADevice.BorderColor = value & BORDER_BIT; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Memory.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Memory.cs index 33509faa6b..6bec98ab37 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Memory.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Memory.cs @@ -236,11 +236,11 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum break; case 1: case 2: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; case 3: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } @@ -267,7 +267,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum RAM3[addr % 0x4000] = value; break; case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } @@ -302,7 +302,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // RAM 0x4000 (RAM5 - Bank5 only) case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; @@ -331,14 +331,14 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum RAM4[addr % 0x4000] = value; break; case 5: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM5[addr % 0x4000] = value; break; case 6: RAM6[addr % 0x4000] = value; break; case 7: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM7[addr % 0x4000] = value; break; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Port.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Port.cs index 0f74207c16..e7a4a7304b 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum128KPlus3/ZX128Plus3.Port.cs @@ -154,7 +154,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // Border - LSB 3 bits hold the border colour if (ULADevice.BorderColor != (value & BORDER_BIT)) { - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); ULADevice.BorderColor = value & BORDER_BIT; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum16K/ZX16.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum16K/ZX16.cs index fef7ea7b45..7f52c2dcc8 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum16K/ZX16.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum16K/ZX16.cs @@ -85,7 +85,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // cannot write to ROM break; case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM0[index] = value; break; } diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Memory.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Memory.cs index 932da8497b..6d49076f41 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Memory.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Memory.cs @@ -77,7 +77,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // cannot write to ROM break; case 1: - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); RAM0[index] = value; break; case 2: diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Port.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Port.cs index e0a91aa2d6..a4cbc9bd5b 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Port.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Machine/ZXSpectrum48K/ZX48.Port.cs @@ -86,7 +86,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // Border - LSB 3 bits hold the border colour if (ULADevice.BorderColor != (value & BORDER_BIT)) { - ULADevice.RenderScreen((int)CurrentFrameCycle); + //ULADevice.RenderScreen((int)CurrentFrameCycle); ULADevice.BorderColor = value & BORDER_BIT; }