1/* Linker script to configure memory regions. */
2
3SEARCH_DIR(.)
4GROUP(-lgcc -lc -lnosys)
5
6MEMORY
7{
8  FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x100000
9  RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x40000
10}
11
12
13INCLUDE "nrf_common.ld"
14