Files
EightBitNet/Z80/Z80.Test/Program.cs
2024-10-12 11:48:54 +01:00

25 lines
551 B
C#

// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
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, Z80>(board, board.CPU);
harness.Run();
}
}
}