aboutsummaryrefslogtreecommitdiff
path: root/libs/acpi/test_data/tables.S
blob: f40f070a69a257a17ad6f4f3fa7d29afcb11b05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.section .rodata

.balign 16

#define TABLE(name, file)     \
  .global name##_start;       \
  .global name##_end;         \
  name##_start: .incbin file; \
  name##_end:

TABLE(basic_madt, "basic_madt.aml")
TABLE(basic_rsdt, "basic_rsdt.aml")
TABLE(basic_rsdp, "basic_rsdp.aml")

#undef TABLE