Make the Z80 test harness mostly functional.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-20 22:23:58 +00:00
parent 1292163837
commit 46a12a2b7a
6 changed files with 240 additions and 27 deletions

View File

@@ -1,12 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Z80.Test
{
class Program
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();
}
}
}
}