assume CS:code,DS:data data segment string db 'I am Full Stack developer named rozbo','$' data ends code segment main: mov ax,data mov ds,ax mov dx,offset string mov ah,09h int 21h mov ah,4ch int 21h code ends end main