1
0
Fork 0

feat/kernel: New paging API for amd64

This commit is contained in:
Kevin Alavik 2025-05-14 18:35:51 +02:00
parent fc4de346a3
commit b11edf4457
Signed by: cmpsb
GPG key ID: 10D1CC0526FDC6D7
3 changed files with 154 additions and 81 deletions

View file

@ -44,7 +44,7 @@ void emk_entry(void)
if (!LIMINE_BASE_REVISION_SUPPORTED)
{
log_early("ERROR: Limine base revision is not supported\n");
kpanic(NULL, "Limine base revision is not supported\n");
hcf();
}
@ -79,6 +79,7 @@ void emk_entry(void)
pfree(a, 1);
paging_init();
log_early("Initialized paging");
hlt();
}