static const COND EQ
Equal (Z == 1)
static const COND GE
Signed greater than or equal (N == V)
static const COND VC
No overflow (V == 0)
static const COND NE
Not equal (Z == 0)
static const COND GT
Signed greater then (Z == 0 && N == V)
static const COND AL
Always (Any)
static const COND CC
Carry clear (C == 0)
static const COND CS
Carry set (C == 1)
static const COND VS
Overflow (V == 1)
static const COND LT
Signed less then (N != V)
static const COND MI
Minus, negative (N == 1)
static const COND LS
Unsigned lower or same (!(C == 1 && Z == 0))
static const COND HI
Unsigned higher (C == 1 && Z == 0)
static const COND PL
Plus, positive or zero (N == 0)
static const COND LE
Signed less than or equal (!(Z == 0 && N == V))