From c2abb01978214e296ca4a32b34164c63dc315a23 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 9 Feb 2014 20:09:19 +0000 Subject: [PATCH] i must commit this because we aren't using git --- .../CPUs/HuC6280/Execute.cs | 6 +----- .../CPUs/HuC6280/HuC6280.cs | 20 +++++++++++++++---- .../Consoles/PC Engine/PCEngine.cs | 20 +++++++++++++++---- CpuCoreGenerator/HuC6280/CoreGenerator.cs | 10 +++------- CpuCoreGenerator/Program.cs | 4 ++-- 5 files changed, 38 insertions(+), 22 deletions(-) diff --git a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs index 63f2bdd627..ba53d33424 100644 --- a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs +++ b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs @@ -7,9 +7,6 @@ namespace BizHawk.Emulation.Cores.Components.H6280 { public partial class HuC6280 { - public bool Debug; - public Action Logger; - public void Execute(int cycles) { sbyte rel8; @@ -58,8 +55,7 @@ namespace BizHawk.Emulation.Cores.Components.H6280 IRQControlByte = IRQNextControlByte; LagIFlag = FlagI; - if (Debug) Logger(State()); - CoreComm.MemoryCallbackSystem.CallExecute(PC); + ExecuteCallbacks(); byte opcode = ReadMemory(PC++); switch (opcode) diff --git a/BizHawk.Emulation.Cores/CPUs/HuC6280/HuC6280.cs b/BizHawk.Emulation.Cores/CPUs/HuC6280/HuC6280.cs index 67f84e2994..fbf1c8672e 100644 --- a/BizHawk.Emulation.Cores/CPUs/HuC6280/HuC6280.cs +++ b/BizHawk.Emulation.Cores/CPUs/HuC6280/HuC6280.cs @@ -9,10 +9,24 @@ namespace BizHawk.Emulation.Cores.Components.H6280 { public sealed partial class HuC6280 { - public HuC6280(CoreComm comm) + public Action TraceLogger; + public bool TraceEnabled; + public Action CallExecute; + + void ExecuteCallbacks() + { + if (TraceEnabled) + { + TraceLogger(State()); + } + if (CallExecute != null) + CallExecute(PC); + } + + + public HuC6280() { Reset(); - CoreComm = comm; } public void Reset() @@ -349,8 +363,6 @@ namespace BizHawk.Emulation.Cores.Components.H6280 public Action WriteVDC; public Action ThinkAction = delegate { }; - public CoreComm CoreComm; - public byte ReadMemory(ushort address) { byte page = MPR[address >> 13]; diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index 41b8d872f1..efbabf57ea 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -93,13 +93,13 @@ namespace BizHawk.Emulation.Cores.PCEngine void Init(GameInfo game, byte[] rom) { Controller = NullController.GetNullController(); - Cpu = new HuC6280(CoreComm); + Cpu = new HuC6280(); VCE = new VCE(); VDC1 = new VDC(this, Cpu, VCE); PSG = new HuC6280PSG(); SCSI = new ScsiCDBus(this, disc); - Cpu.Logger = (s) => CoreComm.Tracer.Put(s); + Cpu.TraceLogger = (s) => CoreComm.Tracer.Put(s); if (TurboGrafx) { @@ -160,7 +160,7 @@ namespace BizHawk.Emulation.Cores.PCEngine RomData = rom; RomLength = RomData.Length; // user request: current value of the SF2MapperLatch on the tracelogger - Cpu.Logger = (s) => CoreComm.Tracer.Put(string.Format("{0:X1}:{1}", SF2MapperLatch, s)); + Cpu.TraceLogger = (s) => CoreComm.Tracer.Put(string.Format("{0:X1}:{1}", SF2MapperLatch, s)); } else { @@ -260,7 +260,19 @@ namespace BizHawk.Emulation.Cores.PCEngine Frame++; PSG.BeginFrame(Cpu.TotalExecutedCycles); - Cpu.Debug = CoreComm.Tracer.Enabled; + Cpu.TraceEnabled = CoreComm.Tracer.Enabled; + + if (CoreComm.MemoryCallbackSystem.HasExecutes) + { + Cpu.CallExecute = delegate(uint addr) + { + CoreComm.MemoryCallbackSystem.CallExecute(addr); + }; + } + else + { + Cpu.CallExecute = null; + } if (SuperGrafx) VPC.ExecFrame(render); diff --git a/CpuCoreGenerator/HuC6280/CoreGenerator.cs b/CpuCoreGenerator/HuC6280/CoreGenerator.cs index 146e106ca1..4b417b100a 100644 --- a/CpuCoreGenerator/HuC6280/CoreGenerator.cs +++ b/CpuCoreGenerator/HuC6280/CoreGenerator.cs @@ -438,13 +438,10 @@ namespace HuC6280 w.WriteLine("// Do not modify this file directly! This is GENERATED code."); w.WriteLine("// Please open the CpuCoreGenerator solution and make your modifications there."); w.WriteLine(); - w.WriteLine("namespace BizHawk.Emulation.Common.Components.H6280"); + w.WriteLine("namespace BizHawk.Emulation.Cores.Components.H6280"); w.WriteLine("{"); w.WriteLine(" public partial class HuC6280"); w.WriteLine(" {"); - w.WriteLine(" public bool Debug;"); - w.WriteLine(" public Action Logger;"); - w.WriteLine(); w.WriteLine(" public void Execute(int cycles)"); w.WriteLine(" {"); w.WriteLine(" sbyte rel8;"); @@ -493,8 +490,7 @@ namespace HuC6280 w.WriteLine(" IRQControlByte = IRQNextControlByte;"); w.WriteLine(" LagIFlag = FlagI;"); w.WriteLine(); - w.WriteLine(" if (Debug) Logger(State());"); - w.WriteLine(" CoreComm.MemoryCallbackSystem.CallExecute(PC);"); + w.WriteLine(" ExecuteCallbacks();"); w.WriteLine(); w.WriteLine(" byte opcode = ReadMemory(PC++);"); w.WriteLine(" switch (opcode)"); @@ -753,7 +749,7 @@ namespace HuC6280 public void GenerateDisassembler(string file) { var w = new StreamWriter(file, false); - w.WriteLine("namespace BizHawk.Emulation.Common.Components.H6280"); + w.WriteLine("namespace BizHawk.Emulation.Cores.Components.H6280"); w.WriteLine(); w.WriteLine("// Do not modify this file directly! This is GENERATED code."); w.WriteLine("// Please open the CpuCoreGenerator solution and make your modifications there."); diff --git a/CpuCoreGenerator/Program.cs b/CpuCoreGenerator/Program.cs index 83a647c7ae..5f064b2400 100644 --- a/CpuCoreGenerator/Program.cs +++ b/CpuCoreGenerator/Program.cs @@ -10,7 +10,7 @@ var y = new HuC6280.CoreGenerator(); y.InitOpcodeTable(); - y.GenerateDisassembler("../../../BizHawk.Emulation.Common/CPUs/HuC6280/Disassembler.cs"); - y.GenerateExecutor("../../../BizHawk.Emulation.Common/CPUs/HuC6280/Execute.cs"); + y.GenerateDisassembler("../../../BizHawk.Emulation.Cores/CPUs/HuC6280/Disassembler.cs"); + y.GenerateExecutor("../../../BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs"); } }