From 6fe11ea213e425b269df0d8aace42053f1337d39 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Sun, 19 Mar 2023 15:59:50 +0100 Subject: [PATCH] noxos (docs): documented the RSDP header verification functions --- .../projects/noxos/docs/codebase/drivers/acpi/rsdp.h.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/projects/noxos/docs/codebase/drivers/acpi/rsdp.h.md b/content/projects/noxos/docs/codebase/drivers/acpi/rsdp.h.md index 5f95ec8..28eccef 100644 --- a/content/projects/noxos/docs/codebase/drivers/acpi/rsdp.h.md +++ b/content/projects/noxos/docs/codebase/drivers/acpi/rsdp.h.md @@ -25,4 +25,10 @@ The RSDP Table used in ACPI v2.0 or higher | length | uint32_t | The size of the whole table | | xsdt_address | uint64_t | The Address of the XSDT (when available this should be used instead of the RSDT) | | checksum_extended | uint8_t | Used to calculate the checksum of the whole table | -| reserved | uint8_t[3] | Can be ignored | \ No newline at end of file +| reserved | uint8_t[3] | Can be ignored | + +# `rsdp_descriptor_v1_verify(descriptor)` - function (bool) +Verifies the integrity of **_descriptor_**. + +# `rsdp_descriptor_v2_verify(descriptor)` - function (bool) +Verifies the integrity of **_descriptor_**.