The IMUL (Signed Multiply) instruction.

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 class Imul : Instruction
Visual Basic
Public Class Imul _
	Inherits Instruction
Visual C++
public ref class Imul : public Instruction

Contracts

Invariants
this.source == null || (
					this.source is EffectiveAddress ||
					this.source is RegisterOperand)
this.multiplier != null
					this.multiplier is Immediate ||
					this.multiplier is EffectiveAddress ||
					this.multiplier is RegisterOperand

Inheritance Hierarchy

System..::..Object
  SharpAssembler.Core..::..Constructable
    SharpAssembler.x86..::..Instruction
      SharpAssembler.x86.Instructions..::..Imul

See Also