BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 53a772a74dcbec1afdda913da790696f3c78bc4b / kernel / acpi / dsdt.c

// Related

Nucleus

Barry ACPI DSDT + PCI 53a772a (3 years, 3 months ago)
diff --git a/kernel/acpi/dsdt.c b/kernel/acpi/dsdt.c
new file mode 100644
index 0000000..23b8178
--- /dev/null
+++ b/kernel/acpi/dsdt.c
@@ -0,0 +1,16 @@
+/*
+ * This file contains the Differentated System Descriptor Table initialisation
+ * code.  The DSDT describes the peripherals attached to a machine, holding
+ * information on IO ports, IRQs, memory mappings and power management.
+ */
+
+#include <nucleus/panic.h>
+#include <io.h>
+#include "acpi.h"
+
+/* Parse the DSDT for information */
+void
+init_dsdt(struct SDTHeader *header)
+{
+	return;
+}