EttinOS/src/HELLO.ASM

12 lines
135 B
NASM

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