C# Class SharpOS.Kernel.ADC.X86.IO

Datei anzeigen Open project: sharpos/SharpOS

Public Methods

Method Description
Delay ( ) : void
Read16 ( uint port ) : UInt16
Read32 ( uint port ) : UInt32
Read8 ( uint port ) : byte
ReadByte ( Port port ) : byte
Write16 ( uint port, UInt16 value ) : void
Write32 ( uint port, UInt32 value ) : void
Write8 ( uint port, byte value ) : void
WriteByte ( Port port, byte value ) : void

Method Details

Delay() public static method

public static Delay ( ) : void
return void

Read16() public static method

public static Read16 ( uint port ) : UInt16
port uint
return System.UInt16

Read32() public static method

public static Read32 ( uint port ) : UInt32
port uint
return System.UInt32

Read8() public static method

public static Read8 ( uint port ) : byte
port uint
return byte

ReadByte() public static method

public static ReadByte ( Port port ) : byte
port Port
return byte

Write16() public static method

public static Write16 ( uint port, UInt16 value ) : void
port uint
value System.UInt16
return void

Write32() public static method

public static Write32 ( uint port, UInt32 value ) : void
port uint
value System.UInt32
return void

Write8() public static method

public static Write8 ( uint port, byte value ) : void
port uint
value byte
return void

WriteByte() public static method

public static WriteByte ( Port port, byte value ) : void
port Port
value byte
return void