mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-01-22 10:31:01 +00:00
30 lines
719 B
C#
30 lines
719 B
C#
using Contralto.CPU;
|
|
|
|
namespace Contralto
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
AltoSystem system = new AltoSystem();
|
|
|
|
// for now everything is driven through the debugger
|
|
|
|
AltoWindow mainWindow = new AltoWindow();
|
|
|
|
mainWindow.AttachSystem(system);
|
|
|
|
/*
|
|
Debugger d = new Debugger(system);
|
|
system.AttachDisplay(d);
|
|
d.LoadSourceCode(MicrocodeBank.ROM0, "Disassembly\\altoIIcode3.mu");
|
|
d.LoadSourceCode(MicrocodeBank.ROM1, "Disassembly\\MesaROM.mu");
|
|
d.ShowDialog();
|
|
*/
|
|
mainWindow.ShowDialog();
|
|
|
|
|
|
}
|
|
}
|
|
}
|