mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-01-22 10:31:01 +00:00
25 lines
386 B
C#
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();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|