Added Golden Axe Warrior. Added Debugger.

This commit is contained in:
2026-05-08 22:51:30 +01:00
parent 25ac64fa5f
commit 778f03b55c
13 changed files with 2114 additions and 38 deletions

View File

@@ -2,7 +2,7 @@
{
public interface IIoBus
{
byte Read(ushort port);
void Write(ushort port, byte value);
byte ReadPort(ushort port);
void WritePort(ushort port, byte value);
}
}