feat: added acpica support

This commit is contained in:
2021-03-26 21:16:22 +01:00
parent f120b104e5
commit 6559569544
10 changed files with 1263 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
#define DEBUG_INIT
#include <myke/acpi.h>
#include <myke/command.h>
#include <myke/cpu/cpuidx.h>
#include <myke/cpu/gdt.h>
@@ -85,6 +86,7 @@ void att_noreturn att_used kmain(multiboot_info_t *multiboot_info, uint32_t mb_n
#ifdef K_SHELL
task_spawn(main_loop, NULL);
#endif
acpi_init_task();
// switch to tasking
syscall_start_scheduler();
}