mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
16 lines
243 B
C
16 lines
243 B
C
#include <types.h>
|
|
|
|
#include <debug.h>
|
|
|
|
int Entry(void *Info);
|
|
|
|
// void _start(void *Raw)
|
|
// {
|
|
// UNUSED(Raw);
|
|
// error("ERROR! INVALID BOOT PROTOCOL!");
|
|
// while (1)
|
|
// asmv("hlt");
|
|
// Entry(NULL);
|
|
// return;
|
|
// }
|