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

Contracts

Invariants
this.second != null
					this.second is EffectiveAddress ||
					this.second is RegisterOperand
this.first != null
					this.first is Immediate ||
					this.first is EffectiveAddress ||
					this.first is RegisterOperand

Inheritance Hierarchy

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

See Also