From b0bc4e21a5d9a085e141519ece45192fefb4dbcc Mon Sep 17 00:00:00 2001 From: Knud <113939798+KnudAndersen@users.noreply.github.com> Date: Tue, 22 Jul 2025 16:22:56 -0500 Subject: [PATCH] RSDP Typo The signature for the RSDP is "RSD PTR ", and it is not an SDT. https://uefi.org/specs/ACPI/6.5/05_ACPI_Software_Programming_Model.html?highlight=rsdt#root-system-description-table-rsdt --- 02_Architecture/06_ACPITables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/02_Architecture/06_ACPITables.md b/02_Architecture/06_ACPITables.md index c903acc..be948b2 100644 --- a/02_Architecture/06_ACPITables.md +++ b/02_Architecture/06_ACPITables.md @@ -124,8 +124,8 @@ The RSDT is an SDT header followed by an array of `uint32_t`s, representing the The XSDT is the same, except the array is of `uint64_t`s. ```c -struct RSDP { - ACPISDTHeader sdtHeader; //signature "RSDP" +struct RSDT { + ACPISDTHeader sdtHeader; //signature "RSDT" uint32_t sdtAddresses[]; };