mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
15 lines
214 B
Plaintext
15 lines
214 B
Plaintext
ENTRY(_Reset)
|
|
SECTIONS
|
|
{
|
|
. = 0x0;
|
|
.text : {
|
|
startup.o (INTERRUPT_VECTOR)
|
|
*(.text)
|
|
}
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss COMMON) }
|
|
. = ALIGN(8);
|
|
. = . + 0x1000; /* 4kB of stack memory */
|
|
stack_top = .;
|
|
}
|