Refactoring complete. Everything works as before

This commit is contained in:
2026-04-29 16:14:37 +01:00
parent e4bda5f7f6
commit 96b06ffc4e
6 changed files with 608 additions and 550 deletions

View File

@@ -6,7 +6,7 @@ namespace Core.Io
{
public class IO_Bus
{
public byte BorderColorIndex { get; private set; } = 7;
public byte BorderColorIndex { get; set; } = 7;
public bool BeeperState { get; private set; } = false;
public byte[] KeyboardRows = new byte[8] { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
TapManager _tapManager = new TapManager();