Here are the control transfer instruction inerruot the sequential execution of instruction in memory and transfer control to some other point in memory either unconditionally or after testing the result of "CMP: instruction..
The Control Intructions are:
1-ja dest-----> Jump if above
2-jae dest -----> jump if above or equal
3-jb dest -----> jumo if below
4-jbe dest -----> jump if below or equal
5- je dest -----> jump if equal
6- jne dest -----> jump if not equal
7-jmp dest -----> Unconditional jump
8-irest -----> Return from an interrupt
Cheers
Dabdob