blob: da9a12f920b8c0faf771e303878e8be29b789be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.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")
TABLE(table_header, "table_header.aml")
#undef TABLE
|