PCE: fix CoreGenerator solution
This commit is contained in:
parent
094e7ca18f
commit
20bf97c2bd
|
@ -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)
|
||||
|
|
|
@ -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.");
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue