namespace Core.Interfaces { public interface IIoBus { byte ReadPort(ushort port); void WritePort(ushort port, byte value); } }