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