aboutsummaryrefslogtreecommitdiff
path: root/examples/mimxrt6
diff options
context:
space:
mode:
Diffstat (limited to 'examples/mimxrt6')
-rw-r--r--examples/mimxrt6/memory.x52
1 files changed, 26 insertions, 26 deletions
diff --git a/examples/mimxrt6/memory.x b/examples/mimxrt6/memory.x
index 5ea82fd71..6c4410f57 100644
--- a/examples/mimxrt6/memory.x
+++ b/examples/mimxrt6/memory.x
@@ -1,34 +1,34 @@
1MEMORY { 1MEMORY {
2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256 2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256
3 FCB : ORIGIN = 0x08000400, LENGTH = 512 3 FCB : ORIGIN = 0x08000400, LENGTH = 512
4 BIV : ORIGIN = 0x08000600, LENGTH = 4 4 BIV : ORIGIN = 0x08000600, LENGTH = 4
5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K 5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M 6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M
7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K 7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K
8} 8}
9 9
10SECTIONS { 10SECTIONS {
11 .otfad : { 11 .otfad : {
12 . = ALIGN(4); 12 . = ALIGN(4);
13 KEEP(* (.otfad)) 13 KEEP(* (.otfad))
14 . = ALIGN(4); 14 . = ALIGN(4);
15 } > OTFAD 15 } > OTFAD
16 16
17 .fcb : { 17 .fcb : {
18 . = ALIGN(4); 18 . = ALIGN(4);
19 KEEP(* (.fcb)) 19 KEEP(* (.fcb))
20 . = ALIGN(4); 20 . = ALIGN(4);
21 } > FCB 21 } > FCB
22 22
23 .biv : { 23 .biv : {
24 . = ALIGN(4); 24 . = ALIGN(4);
25 KEEP(* (.biv)) 25 KEEP(* (.biv))
26 . = ALIGN(4); 26 . = ALIGN(4);
27 } > BIV 27 } > BIV
28 28
29 .keystore : { 29 .keystore : {
30 . = ALIGN(4); 30 . = ALIGN(4);
31 KEEP(* (.keystore)) 31 KEEP(* (.keystore))
32 . = ALIGN(4); 32 . = ALIGN(4);
33 } > KEYSTORE 33 } > KEYSTORE
34} 34}