.model small .stack 100h .data msg db 'I am here$' .code mov ax,@data mov ds, ax mov cl,0ffh ;++++++++++++++start mov ah, 9 mov dx, offset msg int 21h ;++++++++++++++end mov ah,4ch int 21h end