synth/arm/bootloader.ld

35 lines
457 B
Plaintext
Raw Permalink Normal View History

2022-05-08 06:00:22 +00:00
MEMORY
{
ICTM (rwx) : ORIGIN = 0x00000000, LENGTH = 2048
2022-05-08 06:00:22 +00:00
}
SECTIONS
{
.text :
{
2022-05-17 03:28:24 +00:00
KEEP(*(.vector_table))
2022-05-08 06:00:22 +00:00
*(.text*)
*(.rodata*)
} > ICTM
.bss (NOLOAD) :
{
_bss_begin = .;
*(.bss*)
*(COMMON)
_bss_end = .;
} > ICTM
.data :
{
*(.data*)
__exidx_start = .;
*(.exidx*)
__exidx_end = .;
} > ICTM
2022-05-09 03:55:01 +00:00
_initial_stack_pointer = 2048;
2022-05-09 03:55:01 +00:00
}