hw/arm: versal: Move misplaced comment
[qemu/ar7.git] / tests / multiboot / link.ld
blob2eafcffc4f123255befccf11db5b4828be7ee322
1 ENTRY(_start)
3 SECTIONS
5     . = 0x100000;
6     .text : AT(ADDR(.text)) {
7         *(multiboot)
8         *(.text)
9     }
10     .data ALIGN(4096) : AT(ADDR(.data)) {
11         *(.data)
12     }
13     .rodata ALIGN(4096) : AT(ADDR(.rodata)) {
14         *(.rodata)
15     }
16     .bss ALIGN(4096) : {
17         *(.bss)
18     }