proxmark3/armsrc/ldscript

26 lines
416 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.*)
*(.glue_7)
*(.glue_7t)
*(.version_information)
} >osimage
.rodata : {
*(.rodata)
*(.rodata*)
} >osimage
.data : { *(.data) } >ram
__bss_start__ = .;
.bss : { *(.bss) } >ram
__bss_end__ = .;
}