Files

9 lines
158 B
C#

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