Initializes a new instance of the Jcxz class.

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 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

ExceptionCondition
System..::..ArgumentNullExceptiontarget == null
System.ComponentModel..::..InvalidEnumArgumentException!(Enum.IsDefined(typeof(DataSize), operandSize))
System..::..ArgumentExceptionoperandSize != 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
Description: The size must be either None, 16, 32 or 64-bits.
Exception: System..::..ArgumentException

See Also