Added Master System Memory Bus

This commit is contained in:
2026-05-08 20:40:49 +01:00
parent 7511e17c3e
commit 25ac64fa5f
5 changed files with 134 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace Core.Interfaces
{
public interface IIoBus
{
byte Read(ushort port);
void Write(ushort port, byte value);
}
}