UMBC CMSC 211 Fall 1999 |
Instruction | Symbolic | Description |
---|---|---|
JA shortlabel | op1 > op2 | jump if above |
JNA shortlabel | !(op1 > op2) | jump if not above |
JAE shortlabel | op1 >= op2 | jump if above or equal |
JNAE shortlabel | !(op1 >= op2) | jump if not above or equal |
JB shortlabel | op1 < op2 | jump if below |
JNB shortlabel | !(op1 < op2) | jump if not belw than |
JBE shortlabel | op1 <= op2 | jump if below or equal |
JNBE shortlabel | !(op1 <= op2) | jump if not below or equal |