Write an 8085 program to add two 16-bit no. stored in memory locations 2100H and 2200H respectively.
LDA 2100H : load acuumulator
MOV B ,A
LDA 2200H
ADD B
HLT
Write an 8085 program to add two 16-bit no. stored in memory locations 2100H and 2200H respectively.
LDA 2100H : load acuumulator
MOV B ,A
LDA 2200H
ADD B
HLT
Follow Us