Skip to content

Commit d904baa

Browse files
committed
Add 52833 linker script
1 parent 48e7499 commit d904baa

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* Linker script to configure memory regions. */
2+
3+
SEARCH_DIR(.)
4+
GROUP(-lgcc -lc -lnosys)
5+
6+
MEMORY
7+
{
8+
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x80000
9+
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x20000
10+
CODE_RAM (rwx) : ORIGIN = 0x800000, LENGTH = 0x20000
11+
}
12+
13+
INCLUDE "nrf52_common.ld"

0 commit comments

Comments
 (0)