The ADD (Signed or Unsigned Add) 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 Add : Instruction, ILockInstruction
Visual Basic
Public Class Add _
	Inherits Instruction _
	Implements ILockInstruction
Visual C++
public ref class Add : public Instruction, 
	ILockInstruction

Contracts

Invariants
this.destination != null
					this.destination is EffectiveAddress ||
					this.destination is RegisterOperand
this.source != null
					this.source is Immediate ||
					this.source is EffectiveAddress ||
					this.source is RegisterOperand

Inheritance Hierarchy

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

See Also