I am new in assembly , I am using emu8086
I was trying to print two elements of an array , but I could not print the second element
Here is my code:
.MODEL SMALL
.STACK 100H
.DATA
MSG DB 'HI','GOOD$'
.CODE
MAIN PROC
MOV AX,@DATA
MOV DS,AX
MOV AH,2
MOV DL,MSG
INT 21H
MOV AH,2
MOV DL,MSG+1
INT 21H
MOV AH,4CH
INT 21H
MAIN ENDP
END MAIN
at output hi is printed , good is not printed . please correct me how can print the second element.