xref: /qemu/tests/tcg/arm/system/test-armv6m-undef.ld (revision eb0ce134)
1ENTRY(exc_reset_thumb)
2
3SECTIONS
4{
5    . = 0x0;
6    .text : {
7        *(.text)
8    }
9    .data : {
10        *(.data)
11    }
12    .rodata : {
13        *(.rodata)
14    }
15    .bss : {
16        *(.bss)
17    }
18    /DISCARD/ : {
19        *(.ARM.attributes)
20    }
21}
22