51 lines
879 B
Plaintext
51 lines
879 B
Plaintext
/*
|
|
* Unified Cortex Startup - GNU ld linker script file
|
|
*
|
|
* This file is in public domain
|
|
*
|
|
* Put together by Paul Sokolovsky based on article by Vanya Sergeev
|
|
* http://dev.frozeneskimo.com/notes/cortex_cmsis/ , GNU ld documentation
|
|
* and numerous other public resources.
|
|
*
|
|
*/
|
|
|
|
ENTRY(Reset_Handler)
|
|
|
|
SECTIONS {
|
|
|
|
.text :
|
|
{
|
|
KEEP(*(.vectors))
|
|
KEEP(*(.cortex_vectors))
|
|
KEEP(*(.vendor_vectors))
|
|
*(.text*)
|
|
*(.rodata*)
|
|
_end_text = .;
|
|
} >flash
|
|
|
|
_start_init_data = LOADADDR(.data);
|
|
|
|
.data :
|
|
{
|
|
_start_data = .;
|
|
*(.data*)
|
|
_end_data = .;
|
|
} >sram AT >flash
|
|
|
|
.bss :
|
|
{
|
|
_start_bss = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
_end_bss = .;
|
|
} >sram
|
|
|
|
. = ALIGN(4);
|
|
|
|
_start_stack = .;
|
|
|
|
PROVIDE(_end_stack = ORIGIN(sram) + LENGTH(sram));
|
|
}
|
|
|
|
_end = .;
|