From 3bf37f1c17648cc3a6920cf75fb1bb4a39bf9019 Mon Sep 17 00:00:00 2001 From: SaxxonPike Date: Sat, 6 Jul 2019 16:29:14 -0500 Subject: [PATCH] C64: No need for LagCycles anymore. --- BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs | 1 - .../Computers/Commodore64/MOS/Chip6510.cs | 7 ------- 2 files changed, 8 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs index 926942bbe4..1592c35a51 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs @@ -207,7 +207,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 { _board.InputRead = false; _board.PollInput(); - _board.Cpu.LagCycles = 0; } _board.Execute(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.cs index ba2ba3bf53..f3c9ad60ec 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.cs @@ -117,14 +117,8 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS _cpu.NMI |= _pinNmiLast && !_thisNmi; _cpu.ExecuteOne(); } - else - { - LagCycles++; - } } - public int LagCycles; - internal bool AtInstructionStart() { return _cpu.AtInstructionStart(); @@ -233,7 +227,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS ser.EndSection(); ser.Sync(nameof(_thisNmi), ref _thisNmi); - ser.Sync(nameof(LagCycles), ref LagCycles); } public void Write(int addr, int val)