Initializes a new instance of the Shl 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 Shl(
	EffectiveAddress value,
	RegisterOperand positions
)
Visual Basic
Public Sub New ( _
	value As EffectiveAddress, _
	positions As RegisterOperand _
)
Visual C++
public:
Shl(
	EffectiveAddress^ value, 
	RegisterOperand^ positions
)

Parameters

value
Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The value to change.
positions
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The register containing the number of positions to adjust.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue == null
System..::..ArgumentNullExceptionpositions == null

Contracts

See Also