Microprocessor 8085 Appendix A
Microprocessor 8085 Appendix A
Appendix A
Explanation :
We have immediate data 05 H. To load this data into the accumulator we will use the MVI A, 05 H
instruction.
To transfer the data to B register we will use the instruction MOV B, A.
To transfer the data to H register we will use the instruction MOV H, A.
Algorithm :
Step I
:
Step II :
Step III :
Program :
Instruction
Comments
MVI
; Initialize A reg = 05 H
A, 05 H
MOV B, A
MOV H, A
HLT
Flowchart 1