proxmark3/armsrc/ldscript-fpga
henryk@ploetzli.ch 2bfed17db2 Add a common linker script with the memory map for the complete project
Use the correct physical addresses in the memory map, and instead translate the addresses during postprocessing with objcopy
2009-08-27 16:07:35 +00:00

13 lines
228 B
Text

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