ibis-os/boot.asm

18 lines
190 B
NASM
Raw Normal View History

2024-07-24 17:02:54 +00:00
[org 0x7c00]
boot:
mov bx, HELLO_WORLD2
call println
jmp $ ; Halt
; Boot sector libs
; Boot sector data
; Boot sector padding and magic number
times 510-($-$$) db 0
dw 0xaa55