1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-02-10 02:00:33 +00:00

Implemented disk writes (roughly). Bravo now works. DIEX passes with writes enabled. Begun investigation into drive selection logic. Added Mesa source code with annotation, is displayed in ROM1 tab.

This commit is contained in:
Josh Dersch
2015-12-02 12:39:10 -08:00
parent f256042cf4
commit 2c2ea68a63
12 changed files with 1389 additions and 1242 deletions

View File

@@ -11,7 +11,8 @@ namespace Contralto
// for now everything is driven through the debugger
Debugger d = new Debugger(system);
system.AttachDisplay(d);
d.LoadSourceCode("Disassembly\\altoIIcode3.mu");
d.LoadSourceCode(MicrocodeBank.ROM0, "Disassembly\\altoIIcode3.mu");
d.LoadSourceCode(MicrocodeBank.ROM1, "Disassembly\\MesaROM.mu");
d.ShowDialog();
}