// // Copyright (c) Adrian Conlon. All rights reserved. // 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(); } } } }