]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/ldscript-fpga
4c926bf8ce7a4ec1fc09bc14a1e93f074cfd8a2f
[proxmark3-svn] / armsrc / ldscript-fpga
1 INCLUDE ../common/ldscript.common
2
3 SECTIONS
4 {
5 fpgaimage : {
6 obj/fpgaimg.o(.text) *(.text)
7 *(.rodata)
8 } >fpgaimage
9 .data : { *(.data) } >ram
10 __bss_start__ = .;
11 .bss : { *(.bss) } >ram
12 __bss_end__ = .;
13 }
Impressum, Datenschutz