summaryrefslogtreecommitdiff
path: root/firmware/app.lds
diff options
context:
space:
mode:
authorDaniel Ankers <dan@weirdo.org.uk>2006-08-03 16:29:42 +0000
committerDaniel Ankers <dan@weirdo.org.uk>2006-08-03 16:29:42 +0000
commitcec7cdc3bbf46379131e6951585951cf97444326 (patch)
tree0ea6c203ed51fad4d51a7dc0fb2090f3f1a55dbb /firmware/app.lds
parent2fa5d81fcd66abd52cee622ba87787159d3cd2e7 (diff)
downloadrockbox-cec7cdc3bbf46379131e6951585951cf97444326.tar.gz
rockbox-cec7cdc3bbf46379131e6951585951cf97444326.zip
Initial work for coprocessor support on iPods. FS#5755
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10437 a1c6a512-1295-4272-9138-f99709370657
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 */