]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/ldscript-full
(Our Windows ARM toolchain really likes its glue sections)
[proxmark3-svn] / armsrc / ldscript-full
1 SECTIONS
2 {
3 . = 0x00002000;
4 .fpga : { obj/fpgaimg.o(.rodata) }
5 . = 0x00010000;
6 .start : { obj/start.o(.text) }
7 .text : { *(.text) }
8 .rodata : { *(.rodata) }
9 . = 0x00200000;
10 .data : { *(.data) }
11 __bss_start__ = .;
12 .bss : { *(.bss) }
13 __bss_end__ = .;
14 }
Impressum, Datenschutz