aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/memory.x
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/memory.x')
-rw-r--r--examples/boot/memory.x14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/boot/memory.x b/examples/boot/memory.x
deleted file mode 100644
index dfb72103f..000000000
--- a/examples/boot/memory.x
+++ /dev/null
@@ -1,14 +0,0 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
5 FLASH : ORIGIN = 0x00007000, LENGTH = 64K
6 DFU : ORIGIN = 0x00017000, LENGTH = 68K
7 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
8}
9
10__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);
11__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE);
12
13__bootloader_dfu_start = ORIGIN(DFU);
14__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU);