mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
16 lines
216 B
C
16 lines
216 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;
|
|
}
|