proxmark3/armsrc/ldscript-fpga

14 lines
228 B
Text
Raw Normal View History

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