mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 13:48:32 +03:00
minimal testprog (not working)
This commit is contained in:
14
minimal/test.ld
Normal file
14
minimal/test.ld
Normal file
@@ -0,0 +1,14 @@
|
||||
ENTRY(_Reset)
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x0;
|
||||
.text : {
|
||||
startup.o (INTERRUPT_VECTOR)
|
||||
*(.text)
|
||||
}
|
||||
.data : { *(.data) }
|
||||
.bss : { *(.bss COMMON) }
|
||||
. = ALIGN(8);
|
||||
. = . + 0x1000; /* 4kB of stack memory */
|
||||
stack_top = .;
|
||||
}
|
||||
Reference in New Issue
Block a user