initial commit: a mess of assembly code
[fmap.git] / x86_64_sse2_x87 / fasm / examples / x86 / hello.asm
blob7d21aee6b4b61c98fa307da7f76643ed16012be3
2 include '8086.inc'
4 org 100h
6 display_text = 9
8 mov ah,display_text
9 mov dx,hello
10 int 21h
12 int 20h
14 hello db 'Hello world!',24h