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
C# |
---|
public Cmp( RegisterOperand second, RegisterOperand first ) |
Visual Basic |
---|
Public Sub New ( _ second As RegisterOperand, _ first As RegisterOperand _ ) |
Visual C++ |
---|
public: Cmp( RegisterOperand^ second, RegisterOperand^ first ) |
Parameters
- second
- Type: SharpAssembler.x86.Operands..::..RegisterOperand
The destination register.
- first
- Type: SharpAssembler.x86.Operands..::..RegisterOperand
The source register.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | second == null |
System..::..ArgumentNullException | first == null |
Contracts
Requires | ||
---|---|---|
second != null
| ||
first != null
|