     1                                  ; An example from:
     2                                  ; https://stackoverflow.com/questions/22270915/how-to-assemble-16-bit-asm-code-using-nasm-then-debug-it-in-linux-before-makin
     3                                  
     4                                  ORG 100h
     5                                  
     6 00000000 8D16[0D00]                      lea dx, [msg]
     7 00000004 B409                            mov ah,9
     8 00000006 CD21                            int 21h
     9 00000008 B8004C                          mov ax, 4c00h
    10 0000000B CD21                            int 21h
    11                                  
    12 0000000D 48454C4C4F20574F52-     msg:    DB 'HELLO WORLD$'
    12 00000016 4C4424             
