proxmark3/armsrc/ldscript-fpga
2009-08-27 16:12:00 +00:00

15 lines
257 B
Text

INCLUDE ../common/ldscript.common
SECTIONS
{
fpgaimage : {
obj/fpgaimg.o(.text) *(.text)
*(.rodata)
*(.glue_7)
*(.glue_7t)
} >fpgaimage
.data : { *(.data) } >ram
__bss_start__ = .;
.bss : { *(.bss) } >ram
__bss_end__ = .;
}