summaryrefslogtreecommitdiff
path: root/gcc_nrf52.ld
diff options
context:
space:
mode:
Diffstat (limited to 'gcc_nrf52.ld')
-rw-r--r--gcc_nrf52.ld9
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc_nrf52.ld b/gcc_nrf52.ld
index b40dc06b..705c3d3b 100644
--- a/gcc_nrf52.ld
+++ b/gcc_nrf52.ld
@@ -3,13 +3,14 @@
SEARCH_DIR(.)
GROUP(-lgcc -lc -lnosys)
-NO_INIT_SIZE = 0x100;
-RAM_MAX = 64K;
+NOINIT_SIZE = 0x100;
+RAM_SIZE = 64K;
+
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000, LENGTH = 0x78000
- RAM (rwx) : ORIGIN = 0x20000000, LENGTH = RAM_MAX - NO_INIT_SIZE
- NOINIT (rwx): ORIGIN = ORIGIN(RAM) + LENGTH(RAM), LENGTH = NO_INIT_SIZE
+ RAM (rwx) : ORIGIN = 0x20000000, LENGTH = RAM_SIZE - NOINIT_SIZE
+ NOINIT (rwx): ORIGIN = ORIGIN(RAM) + LENGTH(RAM), LENGTH = NOINIT_SIZE
}
SECTIONS