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));
        }