EightBitNet/Test_M6502/Program.cs
Adrian Conlon 9a06b1743f Port of EightBit library to .Net (unworking!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-02 15:12:51 +00:00

16 lines
296 B
C#

namespace Test
{
class Program
{
static void Main(string[] args)
{
var configuration = new Configuration();
configuration.DebugMode = true;
var harness = new TestHarness(configuration);
harness.Run();
}
}
}