Package com.kenai.jnr.x86asm
Class OP
- java.lang.Object
-
- com.kenai.jnr.x86asm.OP
-
@Deprecated public final class OP extends java.lang.Object
Deprecated.Operand types that can be encoded in Op operand
-
-
Field Summary
Fields Modifier and Type Field Description static int
OP_IMM
Deprecated.Operand is immediate.static int
OP_LABEL
Deprecated.Operand is label.static int
OP_MEM
Deprecated.Operand is memory.static int
OP_NONE
Deprecated.Invalid operandstatic int
OP_REG
Deprecated.Operand is register.static int
OP_VAR
Deprecated.Operand is variable.
-
Constructor Summary
Constructors Modifier Constructor Description private
OP()
Deprecated.
-
-
-
Field Detail
-
OP_NONE
public static final int OP_NONE
Deprecated.Invalid operand- See Also:
- Constant Field Values
-
OP_REG
public static final int OP_REG
Deprecated.Operand is register.- See Also:
- Constant Field Values
-
OP_MEM
public static final int OP_MEM
Deprecated.Operand is memory.- See Also:
- Constant Field Values
-
OP_IMM
public static final int OP_IMM
Deprecated.Operand is immediate.- See Also:
- Constant Field Values
-
OP_LABEL
public static final int OP_LABEL
Deprecated.Operand is label.- See Also:
- Constant Field Values
-
OP_VAR
public static final int OP_VAR
Deprecated.Operand is variable.- See Also:
- Constant Field Values
-
-