.model tiny .code org 100h start: mov ah,9h mov dx,offset mytext int 21h ret mytext db 'COM file compiled OK, using TASM/TLINK',0dh,0ah,'$' end start