target/arm: Deliver BKPT/BRK exceptions to correct exception level
[qemu/ar7.git] / tests / tcg / aarch64 / system / kernel.ld
blob7b3a76dcbf35d4f00920262783de2dd12c06c66e
1 ENTRY(__start)
3 SECTIONS
5     /* virt machine, RAM starts at 1gb */
6     . = (1 << 30);
7     .text : {
8         *(.text)
9     }
10     .rodata : {
11         *(.rodata)
12     }
13     /* align r/w section to next 2mb */
14     . = ALIGN(1 << 21);
15     .data : {
16         *(.data)
17     }
18     .bss : {
19         *(.bss)
20     }
21     /DISCARD/ : {
22         *(.ARM.attributes)
23     }