ibis-os/main.asm
2024-07-24 20:02:54 +03:00

15 lines
190 B
NASM

; Bootloader
%include "boot.asm"
main:
mov bx, HELLO_WORLD
call println
jmp $ ; Halt
; Libs
%include "print_util.asm"
; Data
HELLO_WORLD:
db 'Hello, world! :D', 0