]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/ldscript
Add Makefile for fpga directory (Windows codepath is untested, in any case, go.bat...
[proxmark3-svn] / armsrc / ldscript
1 INCLUDE ../common/ldscript.common
2
3 ENTRY(Vector)
4 SECTIONS
5 {
6 fpgaimage : {
7 *(fpga_bit.data)
8 } >fpgaimage
9 .start : { *(.startos) } >osimage
10 .text : {
11 *(.text)
12 *(.text.*)
13 *(.glue_7)
14 *(.glue_7t)
15 } >osimage
16 .rodata : {
17 *(.rodata)
18 *(.rodata*)
19 } >osimage
20 .data : { *(.data) } >ram
21 __bss_start__ = .;
22 .bss : { *(.bss) } >ram
23 __bss_end__ = .;
24 }
Impressum, Datenschutz