Jump | Flag | Description |
JB/JNAE | CF=1 | Jump if below/not above or equal (unsigned) |
JAE/JNB | CF=0 | Jump if above or equal/not above (unsigned) |
JBE/JNA | CF=1 or ZF=1 | Jump if below or equal/not above (unsigned) |
JE/JZ | ZF=1 | Jump if equal/zero |
JNE/JNZ | ZF=0 | Jump if not equal/not zero |
JL/JNGE | SF<>OF | SF not equal Jump if less/not greater or to OF equal (signed) |
JGE/JNL | SF=OF | Jump if greater or equal/not less (signed) |
JLE/JNG | ZF=1 or SF | Jump is less or equal/not not equal OF greater (signed) |
JG/JNLE | ZF=0 or SF=OF | Jump if greater/not less or equal (signed) |
JS | SF=1 | Jump if sign JNSSF=0 Jump if no sign |
JC | CF=1 | Jump if carry JNCCF=0 Jump if no carry |
JO | OF=1 | Jump if overflow JNOOF=0 Jump if not overflow |
JP/JPE | PF=1 | Jump if parity/parity even |
JNP/JPO | PF=0 | Jump if no parity/parity odd |