Files
EightBitNet/M6502/M6502.Test/Program.cs
2024-10-10 11:27:31 +01:00

21 lines
467 B
C#

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