mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-05 19:07:41 +00:00
12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
/* Linker script to configure memory regions. */
|
|
|
|
SEARCH_DIR(.)
|
|
GROUP(-lgcc -lc -lnosys)
|
|
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x1f000, LENGTH = 0x61000
|
|
RAM (rwx) : ORIGIN = 0x08000000, LENGTH = 0x8000
|
|
}
|
|
|
|
INCLUDE "nrf5x_common.ld" |