mirror of
https://github.com/RfidResearchGroup/ChameleonUltra.git
synced 2026-04-05 13:55:44 +00: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
|
|
} |