Advertisements
Advertisements
Question
List all conditional jump instructions of 8085 Microprocessor with the condition of flag, in each.
Short Answer
Solution
Only when the condition is true is the jump made in conditional jump instructions. The conditions and instructions for the conditional leap are listed below.
- JNZ addr: Jump on not zero (Z = 0)
- JZ addr: Jump on zero (Z = 1)
- JNC addr: Jump on not carry (Cy = 0)
- JC addr: Jump on carry (Cy = 1)
- JPO addr: Jump on odd parity (P = 0)
- JPE addr: Jump on even parity (P = 1)
- JP addr: Jump on plus (S = 0)
- JM addr: Jump on minus (S = 1)
Only the address of the memory location given in the instruction is loaded into the program counter if the condition is met.
shaalaa.com
Is there an error in this question or solution?