mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-05-03 06:29:19 +00:00
Refactored drive logic (mostly) to allow for multiple drives. Fixed drive selection logic. Started work on "real" UI.
This commit is contained in:
@@ -6,14 +6,23 @@ namespace Contralto
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
AltoSystem system = new AltoSystem();
|
||||
AltoSystem system = new AltoSystem();
|
||||
|
||||
// for now everything is driven through the debugger
|
||||
// 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();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user