The CMOV (Conditional Move) 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 Cmov : Instruction, IConditionalInstruction
Visual Basic
Public Class Cmov _
	Inherits Instruction _
	Implements IConditionalInstruction
Visual C++
public ref class Cmov : public Instruction, 
	IConditionalInstruction

Contracts

Invariants
Enum.IsDefined(typeof(InstructionCondition), this.condition)
this.condition != InstructionCondition.None
this.destination != null
this.source != null
					this.source is EffectiveAddress ||
					this.source is RegisterOperand

Inheritance Hierarchy

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

See Also