summaryrefslogtreecommitdiff
path: root/firmware/app.lds
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-08-12 21:03:23 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-08-12 21:03:23 +0000
commit4e5f4ee5e03072d8f470610f8751efcf17ad4f6a (patch)
tree80c7b76f34301cebf1f3394b542de63f638e5b77 /firmware/app.lds
parent062384109190f4f05ef88ab17ec51cd8d49ed5c4 (diff)
downloadrockbox-4e5f4ee5e03072d8f470610f8751efcf17ad4f6a.tar.gz
rockbox-4e5f4ee5e03072d8f470610f8751efcf17ad4f6a.zip
Iriver iFP7xx sound support.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10552 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/app.lds')
-rw-r--r--firmware/app.lds8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index 1caea68fa0..7a8ec11c3e 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -154,6 +154,9 @@ MEMORY
154{ 154{
155 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE 155 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
156 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE 156 IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
157#if CONFIG_CPU==PNX0101
158 IRAM0 : ORIGIN = 0x0, LENGTH = IRAMSIZE
159#endif
157} 160}
158 161
159SECTIONS 162SECTIONS
@@ -221,7 +224,12 @@ SECTIONS
221 _vectorsstart = .; 224 _vectorsstart = .;
222 *(.vectors); 225 *(.vectors);
223 _vectorsend = .; 226 _vectorsend = .;
227#if CONFIG_CPU==PNX0101
228 *(.dmabuf)
229 } >IRAM0 AT> DRAM
230#else
224 } AT> DRAM 231 } AT> DRAM
232#endif
225 233
226 _vectorscopy = LOADADDR(.vectors); 234 _vectorscopy = LOADADDR(.vectors);
227#endif 235#endif