; hello5.asm - Print "Hello, world" from hello5.com (23 byte file) ; To asemble/run using MASM 6.15 ; ; ml /c hello5.asm ; link /t hello5.obj,,,,, .model tiny .code org 100h main: mov ah, 9 ; MSDOS print string terminated by "$" mov dx, offset greeting ; pointer to start int 21h ret greeting byte "Hello, world",13,10,"$" end main