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