BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / e07c7c5065fd619e18a774d172075aa95d1e2d8b / kernel / acpi / acpi.h

// Related

Nucleus

Barry ACPI + APIC 232d0f9 (3 years, 3 months ago)
#ifndef KERNEL_ACPI_H
#define KERNEL_ACPI_H

/* System Descriptor Table Header */
struct SDTHeader {
	char signature[4];
	uint32_t length;
	uint8_t revision;
	uint8_t checksum;
	char oem[6];
	char oemTable[8];
	uint32_t oemRevision;
	uint32_t creator;
	uint32_t creatorRevision;
};

void init_acpi(void *ebda);

#endif