First commit of the Intel8080 processor core. Passes diagnostics. Runs at ~50% speed of unmanaged code.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-28 00:06:35 +00:00
parent 12969dbef6
commit 9a1d5cc762
22 changed files with 5437 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Intel8080.Test
{
public static class Program
{
static void Main(string[] args)
{
var configuration = new Configuration();
#if DEBUG
configuration.DebugMode = true;
#endif
//configuration.DebugMode = true;
using (var harness = new TestHarness(configuration))
{
harness.Run();
}
}
}
}