; An example from:
; https://stackoverflow.com/questions/22270915/how-to-assemble-16-bit-asm-code-using-nasm-then-debug-it-in-linux-before-makin

ORG 100h

        lea dx, [msg]
        mov ah,9
        int 21h
        mov ax, 4c00h
        int 21h

msg:    DB 'HELLO WORLD$'
