9 lines
150 B
C#
9 lines
150 B
C#
namespace Core.Interfaces
|
|
{
|
|
public interface IIoBus
|
|
{
|
|
byte Read(ushort port);
|
|
void Write(ushort port, byte value);
|
|
}
|
|
}
|