.Model Small
.STACK
.DATA
MSG1 DB 'HELLO! How r u?$'
MSG2 DB ' Hi!!!!!!!!!!!!!!!!!!!$'
.CODE
MOV AX,@DATA
MOV DS,AX
MOV AX,0600h ;06 isfor row and 00 isfor column
MOV BH,71H ;7 is used for white background
MOV CX,0000H ;and 1 is used for blue foreground
MOV DX,184FH
INT 10H
; Upper Left corner to Lower right corner
MOV dx,OFFSET MSG1
mov ah,09h
int 21h
mov ah,4ch
int 21h
END