In 8085 processor, Register B contains 0X03 and Register C contains 0X04, What is the content of the Accumulator after the execution of the program given below
MVI A, 0X00H
LOOP:ADD B
DCR C
JNZ LOOP
HLT
1
0X03
2
0X07
3
0X0C
4
0X0F
In 8085 processor, Register B contains 0X03 and Register C contains 0X04, What is the content of the Accumulator after the execution of the program given below
MVI A, 0X00H
LOOP:ADD B
DCR C
JNZ LOOP
HLT