pluto/src/kernel/start.asm

11 lines
105 B
NASM
Raw Normal View History

[bits 32]
[section .text]
[extern kernel_main]
start:
call kernel_main
halt:
cli
hlt
jmp halt