Initializes a new instance of the Shld class.

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

Syntax

C#
public Shld(
	RegisterOperand value,
	RegisterOperand source,
	Immediate positions
)
Visual Basic
Public Sub New ( _
	value As RegisterOperand, _
	source As RegisterOperand, _
	positions As Immediate _
)
Visual C++
public:
Shld(
	RegisterOperand^ value, 
	RegisterOperand^ source, 
	Immediate^ positions
)

Parameters

value
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The value to shift.
source
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The bits to shift in.
positions
Type: SharpAssembler.x86.Operands..::..Immediate
The number of positions to adjust.

Exceptions

Contracts

Requires
value != null
source != null
positions != null

See Also