1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-01-22 10:31:01 +00:00
2015-08-19 13:35:56 -07:00

25 lines
386 B
C#

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();
}
}
}
}