summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tms320dm320/boot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tms320dm320/boot.lds')
-rw-r--r--firmware/target/arm/tms320dm320/boot.lds8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/tms320dm320/boot.lds b/firmware/target/arm/tms320dm320/boot.lds
index 65649d7268..43ed6486e9 100644
--- a/firmware/target/arm/tms320dm320/boot.lds
+++ b/firmware/target/arm/tms320dm320/boot.lds
@@ -136,9 +136,9 @@ SECTIONS
136 { 136 {
137 . = ALIGN(0x4); 137 . = ALIGN(0x4);
138 _iramstart = .; 138 _iramstart = .;
139 *(.icode) 139 *(.icode*)
140 *(.irodata) 140 *(.irodata*)
141 *(.idata) 141 *(.idata*)
142 _iramend = .; 142 _iramend = .;
143 } > IRAM AT> FLASH 143 } > IRAM AT> FLASH
144 144
@@ -148,7 +148,7 @@ SECTIONS
148 { 148 {
149 . = ALIGN(0x4); 149 . = ALIGN(0x4);
150 _ibss_start = .; 150 _ibss_start = .;
151 *(.ibss) 151 *(.ibss*)
152 _ibss_end = .; 152 _ibss_end = .;
153 } > IRAM 153 } > IRAM
154 154