Initializes a new instance of the EncodedInstruction..::..SibByte class.

Namespace: SharpAssembler.x86
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public SibByte(
	byte baseReg,
	byte index,
	byte scale
)
Visual Basic
Public Sub New ( _
	baseReg As Byte, _
	index As Byte, _
	scale As Byte _
)
Visual C++
public:
SibByte(
	unsigned char baseReg, 
	unsigned char index, 
	unsigned char scale
)

Parameters

baseReg
Type: System..::..Byte
The 4-bit BASE part.
index
Type: System..::..Byte
The 4-bit INDEX part.
scale
Type: System..::..Byte
The 2-bit SCALE part.

See Also