From 9609bf16011dea162c8b58c4a85d7994f2a20ac2 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 30 Jul 2014 16:33:48 +0000 Subject: [PATCH] NES: disconnect some bitrotted code for an alternate 6502 core --- .../CPUs/MOS 6502X/MOS6502X.cs | 5 ++--- .../CPUs/MOS 6502X/MOS6502XDouble.cs | 6 ++++-- .../Consoles/Nintendo/NES/Core.cs | 20 ++++--------------- 3 files changed, 10 insertions(+), 21 deletions(-) diff --git a/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502X.cs b/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502X.cs index a0cfc97f06..25329325b7 100644 --- a/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502X.cs +++ b/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502X.cs @@ -7,7 +7,7 @@ namespace BizHawk.Emulation.Cores.Components.M6502 { public sealed partial class MOS6502X { - public MOS6502X(Action DisposeBuilder = null) + public MOS6502X() { InitOpcodeHandlers(); Reset(); @@ -188,8 +188,7 @@ namespace BizHawk.Emulation.Cores.Components.M6502 Func ReadMemory, Func DummyReadMemory, Func PeekMemory, - Action WriteMemory, - Action DisposeBuilder + Action WriteMemory ) { this.ReadMemory = ReadMemory; diff --git a/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502XDouble.cs b/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502XDouble.cs index cb524d864e..6cd560c402 100644 --- a/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502XDouble.cs +++ b/BizHawk.Emulation.Cores/CPUs/MOS 6502X/MOS6502XDouble.cs @@ -10,12 +10,13 @@ namespace BizHawk.Emulation.Cores.Components.M6502 /// maintains a managed 6502X and an unmanaged 6502X, running them alongside and ensuring consistency /// by taking savestates every cycle (!). slow. /// + /* public class MOS6502XDouble { readonly MOS6502X m; readonly MOS6502X_CPP n; - public MOS6502XDouble(Action DisposeBuilder) + public MOS6502XDouble() { m = new MOS6502X(DisposeBuilder); n = new MOS6502X_CPP(DisposeBuilder); @@ -43,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Components.M6502 { writes.Enqueue(value); WriteMemory(addr, value); - }, DisposeBuilder); + }); n.SetCallbacks( delegate(ushort addr) { @@ -237,4 +238,5 @@ namespace BizHawk.Emulation.Cores.Components.M6502 public string Disassemble(ushort pc, out int bytesToAdvance) { bytesToAdvance = 1; return "FOOBAR"; } } + */ } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs index b54f19fb17..0890355364 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Core.cs @@ -13,12 +13,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public partial class NES : IEmulator { //hardware/state - // any of the 3 cpus are drop in replacements public MOS6502X cpu; - //public MOS6502X_CPP cpu; - //public MOS6502XDouble cpu; - // dispose list as the native core can't keep track of its own stuff - List DisposeList = new List(); int cpu_accumulate; //cpu timekeeper public PPU ppu; public APU apu; @@ -75,14 +70,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public void Dispose() { - if (magicSoundProvider != null) magicSoundProvider.Dispose(); + if (magicSoundProvider != null) + magicSoundProvider.Dispose(); magicSoundProvider = null; - if (DisposeList != null) - { - foreach (var h in DisposeList) - h.Free(); - DisposeList = null; - } } class MagicSoundProvider : ISoundProvider, ISyncSoundProvider, IDisposable @@ -169,10 +159,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES public void HardReset() { - cpu = new MOS6502X((h) => DisposeList.Add(h)); - //cpu = new MOS6502X_CPP((h) => DisposeList.Add(h)); - //cpu = new MOS6502XDouble((h) => DisposeList.Add(h)); - cpu.SetCallbacks(ReadMemory, ReadMemory, PeekMemory, WriteMemory, (h) => DisposeList.Add(h)); + cpu = new MOS6502X(); + cpu.SetCallbacks(ReadMemory, ReadMemory, PeekMemory, WriteMemory); cpu.BCD_Enabled = false; cpu.OnExecFetch = ExecFetch;