<<< Simplified Jump Instructions (not x86!)     Index     Simplified Instructions Reserved Opcode (not x86!) >>>

26. Simplified Conditional Jump Instructions (not x86!)


  • There are six conditional jump instructions:

        JA  - jump if greater than (above)
        JAE - jump if greater than or equal
        JB  - jump if less than (below)
        JBE - jump if less than or equal
        JE  - jump if equality
        JNE - jump if inequality
    
  • You would normally execute JE or similar instruction immediately after a CMP instruction, since it sets the less than and equality flags in the CPU for conditional jump instructions to look at.

<<< Simplified Jump Instructions (not x86!)     Index     Simplified Instructions Reserved Opcode (not x86!) >>>