diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-15 16:19:00 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-15 16:19:00 +0200 |
| commit | 6344a2a81b94a00aaaa987d0e0d40993ed581d5e (patch) | |
| tree | e5d77336ba660b30a6ee9b3fc65a77a20ddcbc85 /libs/acpi/test_data | |
| parent | 1113e812359a66591b0854a9f723ab8cd8b09274 (diff) | |
| download | teachos-6344a2a81b94a00aaaa987d0e0d40993ed581d5e.tar.xz teachos-6344a2a81b94a00aaaa987d0e0d40993ed581d5e.zip | |
acpi: reimplement the common table header
Diffstat (limited to 'libs/acpi/test_data')
| -rw-r--r-- | libs/acpi/test_data/table_header.asl | 9 | ||||
| -rw-r--r-- | libs/acpi/test_data/tables.S | 1 | ||||
| -rw-r--r-- | libs/acpi/test_data/tables.hpp | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/libs/acpi/test_data/table_header.asl b/libs/acpi/test_data/table_header.asl new file mode 100644 index 0000000..8cddc03 --- /dev/null +++ b/libs/acpi/test_data/table_header.asl @@ -0,0 +1,9 @@ +[0004] Signature : "TEST" +[0004] Table Length : 00000000 +[0001] Revision : 01 +[0001] Checksum : 00 +[0006] Oem ID : "FEMO " +[0008] Oem Table ID : "HDRTEST " +[0004] Oem Revision : 00000001 +[0004] Asl Compiler ID : "INTL" +[0004] Asl Compiler Revision : 00000000 diff --git a/libs/acpi/test_data/tables.S b/libs/acpi/test_data/tables.S index f40f070..da9a12f 100644 --- a/libs/acpi/test_data/tables.S +++ b/libs/acpi/test_data/tables.S @@ -11,5 +11,6 @@ TABLE(basic_madt, "basic_madt.aml") TABLE(basic_rsdt, "basic_rsdt.aml") TABLE(basic_rsdp, "basic_rsdp.aml") +TABLE(table_header, "table_header.aml") #undef TABLE diff --git a/libs/acpi/test_data/tables.hpp b/libs/acpi/test_data/tables.hpp index 510cbda..dc39b37 100644 --- a/libs/acpi/test_data/tables.hpp +++ b/libs/acpi/test_data/tables.hpp @@ -18,6 +18,7 @@ namespace acpi::test_data::tables TABLE(basic_madt); TABLE(basic_rsdt); TABLE(basic_rsdp); + TABLE(table_header); } // namespace acpi::test_data::tables |
