EightBitNet/Intel8080/Intel8080.Test/Program.cs
Adrian Conlon 2652463106 Remove default debugging from the Intel8080 test.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-03-03 10:45:19 +00:00

24 lines
510 B
C#

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