Mosa.HardwareSystem.IOPortResources.IsPortInISALegacyRegion C# (CSharp) 메소드

IsPortInISALegacyRegion() 공개 메소드

Determines whether the specific port in ISA legacy region.
public IsPortInISALegacyRegion ( ushort port ) : bool
port ushort The port.
리턴 bool
        public bool IsPortInISALegacyRegion(ushort port)
        {
            return ((port >= StartLegacyISAPort) && (port <= EndLegacyISAPort));
        }