diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 20:24:07 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 20:24:07 -0400 |
commit | 8f9329da623bf0812df44f60867180020283ff3f (patch) | |
tree | 08be9ccc06872609a7c0fba400c1adf414e86c60 /kernel.cpp | |
parent | bd0acf88361a4b73a49d11a45177e72bf32091bc (diff) |
acpi detection
Diffstat (limited to 'kernel.cpp')
-rw-r--r-- | kernel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,4 @@ +#include "acpi.hpp" #include "gdt.hpp" #include "idt.hpp" #include "memory.hpp" @@ -26,6 +27,7 @@ void kernel_main(void) for (;;); }); + acpi_initialize(); memory_initialize(); gdt_initialize(); pic_initialize(); |