asm_dip/toolchain/fasmg.kl0e/examples/x86/hello.asm
2024-11-24 23:13:28 -05:00

15 lines
133 B
NASM

include '8086.inc'
org 100h
display_text = 9
mov ah,display_text
mov dx,hello
int 21h
int 20h
hello db 'Hello world!',24h