Jumps

After the compare instruction, there will most likely be a conditional jump instruction after. If we wanted to jump if AX is less than BX (which it is), then there would be an instruction like "JB 200". This instruction says Jump if Below to instruction 200h. What about if we wanted to jump if AX is greater than BX. Then we might have "JA 200". This is read Jump if Above to instruction 200. What about AX equal to BX. We would then have "JZ 200" or "JE 200". (Please note that the previous instructions are synonymous.) This is read Jump if Equal to instruction 200h. Here are the jumps you will most likely encounter:
 

Return