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