Plus 3A implemented but not running

This commit is contained in:
2026-04-29 23:17:51 +01:00
parent 2767e2220f
commit fc17b16471
5 changed files with 119 additions and 47 deletions

View File

@@ -69,9 +69,11 @@ namespace Desktop
fastLoadToolStripMenuItem.Checked = _machine.EnableFastLoad;
HighSpeedToolStripMenuItem.Checked = _machine.HighSpeedMode;
// Load the ROM and start the engine
byte[] romData = RomLoader.Load("48.rom");
_machine.LoadRom(romData);
_machine.LoadRom(RomLoader.Load("plus3-0.rom"), 0);
_machine.LoadRom(RomLoader.Load("plus3-1.rom"), 1);
_machine.LoadRom(RomLoader.Load("plus3-2.rom"), 2);
_machine.LoadRom(RomLoader.Load("plus3-3.rom"), 3);
_machine.LoadRom(RomLoader.Load("48.rom"), 4);
_machine.Start();
}