Write an assembly language program to ADD two data bytes which are stored in general purpose registers. Store the result in memory location ABC0H.
#ORG 8000H
START: MVI B,12H
MVI C,13H
MOV A,C
ADD B
STA ABC0H
HLT
Write an assembly language program to ADD two data bytes which are stored in general purpose registers. Store the result in memory location ABC0H.
#ORG 8000H
START: MVI B,12H
MVI C,13H
MOV A,C
ADD B
STA ABC0H
HLT
Post a Comment
0 Comments