public final class AssemblerConstants extends Object
Modifier and Type | Field and Description |
---|---|
static short |
BYTE |
static String[] |
CONDITION |
static byte |
EQ
ZF == 1 - equal (zero)
|
static byte |
GE
SF == OF - greater than or equal (not less than)
|
static byte |
GT
ZF == 0 and SF == OF - greater than
|
static byte |
LE
ZF == 1 or SF !
|
static byte |
LGE
CF == 0 - logically greater than or equal (not below)
|
static byte |
LGT
CF == 0 and ZF == 0 - logically greater than (above)
|
static byte |
LLE
CF == 1 or ZF == 1 - logically less than or equal (not above)
|
static byte |
LLT
CF == 1 - logically less than (below)
|
static short |
LONG |
static byte |
LT
SF !
|
static byte |
NE
ZF == 0 - not equal (not zero)
|
static byte |
NO
OF == 0 - not overflow
|
static byte |
NS |
static byte |
O
OF == 1 - overflow
|
static byte |
PE
PF == 1 - even parity or unordered floating point #s
|
static byte |
PO
PF == 0 - odd parity or ordered floating point #s
|
static byte |
S |
static short |
SHORT |
static short |
WORD |
Modifier | Constructor and Description |
---|---|
private |
AssemblerConstants() |
public static final byte O
public static final byte NO
public static final byte LLT
public static final byte LGE
public static final byte EQ
public static final byte NE
public static final byte LLE
public static final byte LGT
public static final byte S
public static final byte NS
public static final byte PE
public static final byte PO
public static final byte LT
public static final byte GE
public static final byte LE
public static final byte GT
public static final short BYTE
public static final short SHORT
public static final short WORD
public static final short LONG
private AssemblerConstants()