//
// Copyright (c) Adrian Conlon. All rights reserved.
//
namespace Z80.Test
{
using EightBit;
public static class Program
{
public static void Main(string[] args)
{
var configuration = new Configuration();
#if DEBUG
configuration.DebugMode = true;
#endif
var board = new Board(configuration);
var harness = new TestHarness(board, board.CPU);
harness.Run();
}
}
}