synth/arm/app.ld

41 lines
573 B
Plaintext
Raw Normal View History

MEMORY
{
2022-05-17 03:18:21 +00:00
ICTM (rwx) : ORIGIN = 0x00000800, LENGTH = 14336
}
SECTIONS
{
.text :
{
2022-05-17 03:56:25 +00:00
_text_begin = .;
KEEP(*(.app_init))
*(.text*)
2022-05-17 03:56:25 +00:00
_text_end = .;
*(.rodata*)
} > ICTM
.bss (NOLOAD) :
{
_bss_begin = .;
*(.bss*)
*(COMMON)
_bss_end = .;
} > ICTM
.data :
{
*(.data*)
__exidx_start = .;
*(.exidx*)
__exidx_end = .;
} > ICTM
2022-05-17 03:56:25 +00:00
_heap_begin = .;
_initial_stack_pointer = 16384;
2022-05-17 03:56:25 +00:00
_heap_end = _initial_stack_pointer - 1024;
}