Add multiboot stub (currently broken)

This commit is contained in:
Alex
2023-04-30 20:01:38 +03:00
parent 5e81421ec6
commit 2fbb8e3df2
19 changed files with 1287 additions and 50 deletions

View File

@@ -4,12 +4,12 @@
int Entry(void *Info);
void _start(void *Raw)
{
UNUSED(Raw);
error("ERROR! INVALID BOOT PROTOCOL!");
while (1)
asmv("hlt");
Entry(NULL);
return;
}
// void _start(void *Raw)
// {
// UNUSED(Raw);
// error("ERROR! INVALID BOOT PROTOCOL!");
// while (1)
// asmv("hlt");
// Entry(NULL);
// return;
// }