proxmark3/armsrc/ldscript
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

21 lines
345 B
Text

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