Files
ParsonsMasterSystem2026/Core/Interfaces/IIoBus.cs

9 lines
150 B
C#

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