Question:medium

The content of register (B) and register (C) of 8085 microprocessor are 0AFH and 0BH. It is desired to multiply the content of register B and register C and store the results in accumulator. A part of 8085 program for this purpose is given as : \[ \texttt{MVI A,00H} \] \[ \texttt{LOOP : _________} \] \[ \texttt{_________} \] \[ \texttt{_________} \] \[ \texttt{HLT} \] A sequence of instructions to complete the program would be :

Show Hint

8085 multiplication logic: \[ \text{Multiplication}=\text{Repeated addition} \] Typical loop structure: \[ \texttt{ADD operand} \] \[ \texttt{DCR counter} \] \[ \texttt{JNZ LOOP} \]
Updated On: May 22, 2026
  • JNZ LOOP, ADD B, DCR C
  • ADD B, JNZ LOOP, DCR C
  • DCR C, JNZ LOOP, ADD B
  • ADD B, DCR C, JNZ LOOP
Show Solution

The Correct Option is D

Solution and Explanation

Was this answer helpful?
0


Questions Asked in CUET (PG) exam