I have an assembly code to print (display) a string. My problem is I'm not able to how print two string into different line!
.MODEL SMALL 
.STACK 100H
.DATA
MSG1 DB 'Fun $'
MSG2 DB 'Day!$'
.CODE 
MAIN PROC
MOV AX, @data
MOV DS, AX 
LEA DX,MSG1
MOV AH,9
LEA DX,MSG2
MOV AH,9
INT 21H 
MOV AH,4Ch 
INT 21H
MAIN ENDP
END MAIN
The output should be like:
Fun 
Day!
But in Result:
Day!
Help me!