C# Class SharpOS.AOT.X86.Register

This abstract class represents a register for the x86 architecture
Show file Open project: sharpos/SharpOS Class Usage Examples

Public Methods

Method Description
GetName ( object value ) : string

Gets the name.

Register ( string name, byte index ) : System

Primary constructor for derived classes to overload when instanciating a reference to an x86 register.

ToString ( ) : string

Returns the name of this register as a String

Method Details

GetName() public static method

Gets the name.
public static GetName ( object value ) : string
value object The value.
return string

Register() public method

Primary constructor for derived classes to overload when instanciating a reference to an x86 register.
public Register ( string name, byte index ) : System
name string The name of the register that is being referred to
index byte An implementation-specific number used to encode this register to stream
return System

ToString() public method

Returns the name of this register as a String
public ToString ( ) : string
return string