aboutsummaryrefslogtreecommitdiff
path: root/libs/acpi/test_data/tables.S
blob: af58109526dcb56bd41e71fabd394398532dfb6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.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")

#undef TABLE