EightBitNet/Test_M6502/Program.cs

20 lines
441 B
C#
Raw Normal View History

// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Test
{
public class Program
{
public static void Main(string[] args)
{
var configuration = new Configuration();
////configuration.DebugMode = true;
var harness = new TestHarness(configuration);
harness.Run();
}
}
}