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:
24
Contralto/Program.cs
Normal file
24
Contralto/Program.cs
Normal 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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user