diff options
Diffstat (limited to 'firmware/target/arm/tms320dm320/app.lds')
-rw-r--r-- | firmware/target/arm/tms320dm320/app.lds | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/target/arm/tms320dm320/app.lds b/firmware/target/arm/tms320dm320/app.lds index a1b29dda6f..a3dadb64ed 100644 --- a/firmware/target/arm/tms320dm320/app.lds +++ b/firmware/target/arm/tms320dm320/app.lds | |||
@@ -115,9 +115,9 @@ SECTIONS | |||
115 | { | 115 | { |
116 | . = ALIGN(0x4); | 116 | . = ALIGN(0x4); |
117 | _iramstart = .; | 117 | _iramstart = .; |
118 | *(.icode) | 118 | *(.icode*) |
119 | *(.irodata) | 119 | *(.irodata*) |
120 | *(.idata) | 120 | *(.idata*) |
121 | _iramend = .; | 121 | _iramend = .; |
122 | } > ITCM AT> DRAM | 122 | } > ITCM AT> DRAM |
123 | 123 | ||
@@ -137,7 +137,7 @@ SECTIONS | |||
137 | { | 137 | { |
138 | . = ALIGN(0x4); | 138 | . = ALIGN(0x4); |
139 | _ibss_start = .; | 139 | _ibss_start = .; |
140 | *(.ibss) | 140 | *(.ibss*) |
141 | _ibss_end = .; | 141 | _ibss_end = .; |
142 | } > ITCM | 142 | } > ITCM |
143 | 143 | ||