Initializes a new instance of the JmpFar 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 JmpFar( Operand target ) |
| Visual Basic |
|---|
Public Sub New ( _ target As Operand _ ) |
| Visual C++ |
|---|
public: JmpFar( Operand^ target ) |
Parameters
- target
- Type: SharpAssembler.x86.Operands..::..Operand
The operand.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | target == null |
| System..::..InvalidCastException | !( target is EffectiveAddress) && !(target is FarPointer) |
Contracts
| Requires | ||
|---|---|---|
target != null
| ||
target is EffectiveAddress || target is FarPointer
|