| Compare (rel) operators |
| Mnemonic | operation |
| & | Bitwise compare, the two operands are anded, if the result is non-zero the condition is true |
| = = | If the two operands are equal the condition is true |
| != | If the two operands are not equal the condition is true |
| >= | If RegX is greater than or equal to the right operand the condition is true |
| > | If RegX is greater than the right operand the condition is true |
| <= | If RegX is less than or equal to the right operand the condition is true |
| < | If RegX is less than the right operand the condition is true |