1
0
Fork 0
EttinOS/src/HELLO.ASM

12 lines
137 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