MushOS  0.1
A UNIX-like OS prototype, written from scratch
Loading...
Searching...
No Matches
kernel_gate.asm
1[bits 32]
2[extern _start] ; External C function from kernel.c
3 ; It may be not the first function in kernel, so we ensure to launch the right one.
4
5call _start ; Calling function.
6
7jmp $ ; Replace with hlt? Hanging CPU up.