.modal small
.stack 100h
.data
rec db 'zdravo narode(hello world)$'
.code
start:
mov dx,@data
mov ds,dx
mov dx,offset rec
mov ah,9h
int 21h
mov ah,4ch
int 21h
end start