.model small .stack 100h .data mytext db 'EXE file compiled OK, using TASM/TLINK',0dh,0ah,'$' .code start: mov ax,@data mov ds,ax mov ah,9h mov dx,offset mytext int 21h mov ax,4c00h int 21h end start