summaryrefslogtreecommitdiff
path: root/firmware/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/app.lds')
-rw-r--r--firmware/app.lds9
1 files changed, 9 insertions, 0 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index 3416f5c6b6..3d9be9b32e 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -257,6 +257,15 @@ SECTIONS
257 . += 0x2000; 257 . += 0x2000;
258 stackend = .; 258 stackend = .;
259 } > IRAM 259 } > IRAM
260
261 .cop_stack :
262 {
263 *(.cop_stack)
264 cop_stackbegin = .;
265 . += 0x0500;
266 cop_stackend = .;
267 } > IRAM
268
260#else 269#else
261 /* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section 270 /* TRICK ALERT! We want 0x2000 bytes of stack, but we set the section
262 size smaller, and allow the stack to grow into the .iram copy */ 271 size smaller, and allow the stack to grow into the .iram copy */