ibis-os/main.asm
2024-07-24 22:27:55 +03:00

18 lines
236 B
NASM

; Bootloader
%include "boot.asm"
section KERNEL follows=BOOTSECTOR vstart=1000h
main:
mov bx, 24734
call print_uint
jmp $ ; Halt
; Libs
%include "print_util.asm"
; Data
HELLO_WORLD:
db 'Hello, world! :D', 0