Move the EightBit (.Net) test projects to better locations.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-06 22:58:26 +00:00
parent 73863118d6
commit d6d8c4e13c
27 changed files with 22 additions and 20 deletions

View File

@@ -0,0 +1,19 @@
// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace M6502.Test
{
public class Program
{
public static void Main(string[] args)
{
var configuration = new Configuration();
////configuration.DebugMode = true;
var harness = new TestHarness(configuration);
harness.Run();
}
}
}