Write an assembly language program to SUBTRACTION two data bytes which are stored in memory location starting from D600H. Store the result in memory location B000H.
#ORG 8000H
START: LXI H, D600H
MOV A,M
INX H
MOV B,M
SUB B
STA B000H
HLT
Post a Comment
0 Comments