ptos: drivers: Add ACPI driver groundwork

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-13 22:16:28 -04:00
parent 680a17d175
commit 449c13fcd3
4 changed files with 275 additions and 0 deletions
+4
View File
@@ -16,6 +16,7 @@
#include <hal/serial.h>
#include <hal/kpcr.h>
#include <drivers/bootvid/fbio.h>
#include <drivers/acpi/acpi.h>
#include <string.h>
/* Globals */
@@ -89,6 +90,9 @@ KiKernelInit(VOID)
/* Phase 2 init of bootstrap core */
HalKpcrP2Init(&BootstrapCore);
/* Initialize ACPI */
AcpiInit();
/* Initialize the root process */
InitializeRootProcess();
}