summaryrefslogtreecommitdiff
path: root/examples/boot/nrf/memory.x
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/nrf/memory.x')
-rw-r--r--examples/boot/nrf/memory.x3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/boot/nrf/memory.x b/examples/boot/nrf/memory.x
index dfb72103..3a54ca46 100644
--- a/examples/boot/nrf/memory.x
+++ b/examples/boot/nrf/memory.x
@@ -1,10 +1,11 @@
MEMORY
{
/* NOTE 1 K = 1 KiBi = 1024 bytes */
+ BOOTLOADER : ORIGIN = 0x00000000, LENGTH = 24K
BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
FLASH : ORIGIN = 0x00007000, LENGTH = 64K
DFU : ORIGIN = 0x00017000, LENGTH = 68K
- RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
+ RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 32K
}
__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);