Tasm — 1.4
mov ah, 01h ; DOS input char (echo) int 21h mov char, al
mov ah, 02h ; DOS output char mov dl, char int 21h tasm 1.4
tasm hellocom.asm tlink /t hellocom.obj ; /t → produce .COM | Option | Meaning | |--------|---------| | /zi | Full debug info | | /m | Multiple passes (for forward references) | | /w0 | No warnings | | /l | Generate listing file | mov ah, 01h ; DOS input char (echo)