InterviewSolution
Saved Bookmarks
| 1. |
Briefly Explain Loop Instructions In 8086 Family: |
|
Answer» LOOP: (Jump to specified label until CX = 0): As the name suggests the loop INSTRUCTION is used to repeat a sequence of instructions for a specified NUMBER of time. It does not affect any flag and the number of times the loop is to be REPEATED is stored in the CX register. LOOP: (Jump to specified label until CX = 0): As the name suggests the loop instruction is used to repeat a sequence of instructions for a specified number of time. It does not affect any flag and the number of times the loop is to be repeated is stored in the CX register. |
|