pluto/src/kernel/start.asm
Edward Dean bee7416b08 Feature/hello world kernel land, closes #3 (#4)
* prints hello world

* Builds with the zig build system
2019-04-17 17:40:26 +01:00

10 lines
105 B
NASM

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