2011-01-11 02:55:51 +00:00
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
2013-11-14 21:42:29 +00:00
|
|
|
|
//We don't currently use this anymore
|
|
|
|
|
//var x = new M6502.CoreGenerator();
|
|
|
|
|
//x.InitOpcodeTable();
|
|
|
|
|
//x.GenerateDisassembler("../../../BizHawk.Emulation.Common/CPUs/MOS 6502X/Disassembler.cs");
|
|
|
|
|
//x.GenerateExecutor("../../../BizHawk.Emulation.Common/CPUs/MOS 6502X/Execute.cs");
|
2011-01-11 02:55:51 +00:00
|
|
|
|
|
|
|
|
|
var y = new HuC6280.CoreGenerator();
|
|
|
|
|
y.InitOpcodeTable();
|
2014-02-09 20:22:41 +00:00
|
|
|
|
y.GenerateDisassembler("../../../BizHawk.Emulation.Cores/CPUs/HuC6280/Disassembler.cs");
|
|
|
|
|
y.GenerateExecutor("../../../BizHawk.Emulation.Cores/CPUs/HuC6280/Execute.cs");
|
2014-02-09 23:13:11 +00:00
|
|
|
|
y.GenerateCDL("../../../BizHawk.Emulation.Cores/CPUs/HuC6280/CDLOpcodes.cs");
|
2011-01-11 02:55:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|