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

Parameters

destination
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The destination register.
source
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The source register.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptiondestination == null
System..::..ArgumentNullExceptionsource == null

Contracts

Requires
destination != null
source != null

See Also