BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / acd091571545e40dc85fc691d9d0b12cf4d363ee / kernel / main.c

// Related

Nucleus

Barry Initialise ACPI later acd0915 (3 years, 3 months ago)
diff --git a/kernel/main.c b/kernel/main.c
index 3655743..b4e639e 100644
--- a/kernel/main.c
+++ b/kernel/main.c
@@ -59,8 +59,6 @@ kmain(uint32_t esp, struct MultibootInfo *mbinfo)
 	init_idt();
 	init_pic();
 	cpu_load();
-	/* Search ACPI tables */
-	init_acpi(ebda);
 
 	/* Initialise paging */
 	init_paging();
@@ -68,6 +66,8 @@ kmain(uint32_t esp, struct MultibootInfo *mbinfo)
 	init_tasking();
 	/* Initialise the VFS */
 	init_vfs();
+	/* Search ACPI tables */
+	init_acpi(ebda);
 
 	panic("End of kernel!");
 }