proxmark3/armsrc/ldscript

31 lines
508 B
Plaintext
Raw Normal View History

INCLUDE ../common/ldscript.common
2009-06-29 21:26:35 +08:00
ENTRY(Vector)
SECTIONS
{
.fpgaimage : {
*(fpga_bit.data)
} >fpgaimage
.start : { *(.startos) } >osimage
.text : {
*(.text)
*(.text.*)
*(.eh_frame)
*(.glue_7)
*(.glue_7t)
*(.version_information)
} >osimage
.rodata : {
*(.rodata)
*(.rodata*)
} >osimage
.data : { *(.data) } >ram
__bss_start__ = .;
.bss : { *(.bss) } >ram
__bss_end__ = .;
.commonarea (NOLOAD) : {
*(.commonarea)
} >commonarea
}