mirror of
https://github.com/RfidResearchGroup/ChameleonUltra.git
synced 2026-05-12 11:22:59 -07:00
19 lines
334 B
Plaintext
19 lines
334 B
Plaintext
/* Linker script to configure memory regions. */
|
|||
|
|
|
||
|
|
SEARCH_DIR(.)
|
||
|
|
GROUP(-lgcc -lc -lnosys)
|
||
|
|
|
||
|
|
MEMORY
|
||
|
|
{
|
||
|
|
/* Put a noinit region at RAM */
|
||
|
|
NOINIT (rwx) : ORIGIN = 0x20038000, LENGTH = 0x8000
|
||
|
|
}
|
||
|
|
|
||
|
|
SECTIONS
|
||
|
|
{
|
||
|
|
.noinit (NOLOAD):
|
||
|
|
{
|
||
|
|
/* place all symbols in input sections that start with .noinit */
|
||
|
|
KEEP(*(*.noinit*))
|
||
|
|
} > NOINIT
|
||
|
|
}
|