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 destination,
	RegisterOperand source,
	Immediate multiplier
)
Visual Basic
Public Sub New ( _
	destination As RegisterOperand, _
	source As RegisterOperand, _
	multiplier As Immediate _
)
Visual C++
public:
Imul(
	RegisterOperand^ destination, 
	RegisterOperand^ source, 
	Immediate^ multiplier
)

Parameters

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

Exceptions

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

Contracts

See Also