Integrate uACPI

This commit is contained in:
2025-08-17 18:37:57 +02:00
parent 069870cd0d
commit 92ccd189e7
166 changed files with 42104 additions and 33 deletions

View File

@ -5,6 +5,7 @@
#include "serial.h"
#include "gdt.h"
#include "idt.h"
#include "acpi.h"
void hal_init(void) {
if (!serial_init()) {
@ -12,7 +13,6 @@ void hal_init(void) {
}
LOG("hal", "serial init\n");
gdt_init();
idt_init();
}
__attribute__((noreturn)) void hal_hang(void) {
@ -21,3 +21,7 @@ __attribute__((noreturn)) void hal_hang(void) {
}
}
void hal_init_withmalloc(void) {
acpi_init();
}