mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-25 06:31:37 +00:00
d6d8c4e13c
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
20 lines
447 B
C#
20 lines
447 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;
|
|
|
|
var harness = new TestHarness(configuration);
|
|
harness.Run();
|
|
}
|
|
}
|
|
}
|