功能描述 | 助记符 | 检测的标志位 | |
Jump Equal | Jump Zero | JE/JZ | ZF=1 |
Jump Not Equal | Jump Not Zero | JNE/JNZ | ZF=0 |
有符号条件转移 | |||
Jump Less | Jump Not Greater or Equal | JL/JNGE | SF!=OF |
Jump Greater Equal | Jump Not Less | JGE/JNL | SF=OF |
Jump Greater | Jump Not Less or Equal | JG/JNLE | ZF=0&&SF=OF |
Jump Less or Equal | Jump Not Greater | JLE/JNG | ZF=1||SF!=OF |
无符号条件转移 | |||
Jump Below | Jump Not Above or Equal | JB/JNAE | CF=1 |
Jump Above or Equal | Jump Not Below | JAE/JNB | CF=0 |
Jump Above | Jump Not Below or Equal | JA/JNBE | CF=0&&ZF=0 |
Jump Below or Equal | Jump Not Above | JBE/JNA | CF=1||ZF=1 |