historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/tests/multiboot/link.ld
2024-01-16 11:20:27 -06:00

19 lines
303 B
Text

ENTRY(_start)
SECTIONS
{
. = 0x100000;
.text : AT(ADDR(.text)) {
*(multiboot)
*(.text)
}
.data ALIGN(4096) : AT(ADDR(.data)) {
*(.data)
}
.rodata ALIGN(4096) : AT(ADDR(.rodata)) {
*(.rodata)
}
.bss ALIGN(4096) : {
*(.bss)
}
}