pluto/src/kernel/start.s
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

9 lines
No EOL
89 B
ArmAsm

.global _start
.type _start, @function
_start:
call kmain
halt:
cli
hlt
jmp halt