mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-01-18 00:52:47 +00:00
27 lines
445 B
C#
27 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Contralto.CPU;
|
|
using Contralto.Memory;
|
|
|
|
namespace Contralto
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
AltoCPU cpu = new AltoCPU();
|
|
|
|
while(true)
|
|
{
|
|
MemoryBus.Clock();
|
|
cpu.ExecuteNext();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|