Initializes a new instance of the Imul class.
Namespace: SharpAssembler.x86.InstructionsAssembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public Imul( RegisterOperand destination, EffectiveAddress source, Immediate multiplier ) |
| Visual Basic |
|---|
Public Sub New ( _ destination As RegisterOperand, _ source As EffectiveAddress, _ multiplier As Immediate _ ) |
| Visual C++ |
|---|
public: Imul( RegisterOperand^ destination, EffectiveAddress^ source, Immediate^ multiplier ) |
Parameters
- destination
- Type: SharpAssembler.x86.Operands..::..RegisterOperand
The destination operand.
- source
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The source operand.
- multiplier
- Type: SharpAssembler.x86.Operands..::..Immediate
The multiplier.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | multiplier == null |
Contracts
| Requires | ||
|---|---|---|
multiplier != null
|