Initializes a new instance of the Jcxz 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 Jcxz( RelativeOffset target, DataSize operandSize ) |
| Visual Basic |
|---|
Public Sub New ( _ target As RelativeOffset, _ operandSize As DataSize _ ) |
| Visual C++ |
|---|
public: Jcxz( RelativeOffset^ target, DataSize operandSize ) |
Parameters
- target
- Type: SharpAssembler.x86.Operands..::..RelativeOffset
The target.
- operandSize
- Type: SharpAssembler.Core..::..DataSize
The operand size.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | target == null |
| System.ComponentModel..::..InvalidEnumArgumentException | !(Enum.IsDefined(typeof(DataSize), operandSize)) |
| System..::..ArgumentException | operandSize != DataSize.None && operandSize != DataSize.Bit16 && operandSize != DataSize.Bit32 && operandSize != DataSize.Bit64 |
Contracts
| Requires | ||||
|---|---|---|---|---|
target != null
| ||||
Enum.IsDefined(typeof(DataSize), operandSize) | ||||
operandSize == DataSize.None || operandSize == DataSize.Bit16 || operandSize == DataSize.Bit32 || operandSize == DataSize.Bit64
|