From 20bf97c2bd1dd296fdd27bad53df162b0ef13f09 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 9 Feb 2014 20:22:41 +0000 Subject: [PATCH] PCE: fix CoreGenerator solution --- BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs | 2 +- CpuCoreGenerator/HuC6280/CoreGenerator.cs | 4 ++-- CpuCoreGenerator/Program.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs index 63f2bdd627..7802075082 100644 --- a/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs +++ b/BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs @@ -59,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Components.H6280 LagIFlag = FlagI; if (Debug) Logger(State()); - CoreComm.MemoryCallbackSystem.CallExecute(PC); + CoreComm.MemoryCallbackSystem.CallExecute(PC); byte opcode = ReadMemory(PC++); switch (opcode) diff --git a/CpuCoreGenerator/HuC6280/CoreGenerator.cs b/CpuCoreGenerator/HuC6280/CoreGenerator.cs index 146e106ca1..f24247d0fe 100644 --- a/CpuCoreGenerator/HuC6280/CoreGenerator.cs +++ b/CpuCoreGenerator/HuC6280/CoreGenerator.cs @@ -438,7 +438,7 @@ 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(" {"); @@ -753,7 +753,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"); } }