Mosa.HardwareSystem.IOPortResources.IsPortInISALegacyRegion C# (CSharp) Méthode

IsPortInISALegacyRegion() public méthode

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