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

Parameters

value
Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The value to shift.
source
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The bits to shift in.
positions
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The register with number of positions to adjust. May only be the CL register; or nullNothingnullptra null reference (Nothing in Visual Basic) to use the CL register.

Exceptions

Contracts

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

See Also