Mosa.HardwareSystem.IOPortResources.IsPortInISALegacyRegion C# (CSharp) Method

IsPortInISALegacyRegion() public method

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