EightBitNet/Intel8080/Intel8080.Test/Program.cs
2019-02-28 00:06:35 +00:00

25 lines
549 B
C#

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