8 lines
286 B
Plaintext
8 lines
286 B
Plaintext
![]() |
/* Linker script to configure memory regions. */
|
||
|
MEMORY
|
||
|
{
|
||
|
FLASH (rx) : ORIGIN = 0xC000, LENGTH = 0x34000 /* 48 kB is taken by S210, 80 kB for app. */
|
||
|
RAM (rwx) : ORIGIN = 0x20000900, LENGTH = 0x3700 /* 2.25 kB is taken by S210, 13.75 kB for app. */
|
||
|
}
|
||
|
INCLUDE "gcc_nrf51_common.ld"
|