mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-19 08:31:41 +00:00
999bdf71ff
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
22 lines
486 B
C#
22 lines
486 B
C#
// <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;
|
|
|
|
using (var harness = new TestHarness(configuration))
|
|
{
|
|
harness.Run();
|
|
}
|
|
}
|
|
}
|
|
}
|