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

Parameters

value
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The destination and source operand.
multiplier
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The multiplier.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionmultiplier == null

Contracts

See Also