Javascript is not enabled!
For full functionality of this site it is necessary to enable JavaScript. Here are the instructions how to enable JavaScript in your web browser
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)