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





