EttinOS/src/HELLO.ASM

12 lines
134 B
NASM

CPU 8086
ORG 0x3000
;Print a hello world.
mov si, hello
mov ah, 0x2
int 0x21
int 0x20
;Data
hello db "Hello world!", 0x0