asm_dip/toolchain/fasmg.kl0e/examples/x86/hello.asm

15 lines
133 B
NASM
Raw Normal View History

2024-11-24 20:13:28 -08:00
include '8086.inc'
org 100h
display_text = 9
mov ah,display_text
mov dx,hello
int 21h
int 20h
hello db 'Hello world!',24h