Luna/kernel/include/acpi/SDT.h

20 lines
383 B
C
Raw Normal View History

2022-09-06 09:46:26 +00:00
#pragma once
#include <stdint.h>
namespace ACPI
{
struct SDTHeader
{
char Signature[4];
uint32_t Length;
uint8_t Revision;
uint8_t Checksum;
char OEMID[6];
char OEMTableID[8];
uint32_t OEMRevision;
uint32_t CreatorID;
uint32_t CreatorRevision;
};
2022-09-25 19:43:28 +00:00
bool validate_sdt_header(SDTHeader* header);
2022-09-06 09:46:26 +00:00
}