xnoe-os/hello.asm
2021-08-29 21:50:27 +01:00

13 lines
152 B
NASM

mov ax, 3000h
mov ds, ax
push hello_world_str
mov ah, 01h
int 22h
retf
hello_world_str db "Hello, World!", 13, 10, 13, 10, 0
buffer:
times 32 db 0