1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-05-05 07:24:36 +00:00

Basic skeleton, ucode loading.

This commit is contained in:
Josh Dersch
2015-08-19 13:35:56 -07:00
parent a9cbef544f
commit 6193189b10
39 changed files with 402 additions and 0 deletions

24
Contralto/Program.cs Normal file
View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Contralto.CPU;
namespace Contralto
{
class Program
{
static void Main(string[] args)
{
AltoCPU cpu = new AltoCPU();
while(true)
{
cpu.ExecuteNext();
}
}
}
}