diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-11-09 21:15:49 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-11-09 21:15:49 +0000 |
| commit | 2e383a430de025378bf17942a1cf5ea86860f700 (patch) | |
| tree | 2157737771ab2da4776504316f396a057981933a /apps/plugins/plugin.lds | |
| parent | 412bea9782db6843bcefd53ce7ce74b003b3c8c5 (diff) | |
| download | rockbox-2e383a430de025378bf17942a1cf5ea86860f700.zip rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.gz rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.bz2 rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.xz | |
X5: Changed IRAM splitting between core and codecs/plugins. (a) Codecs benefit more from IRAM than the core. Further changes are required to actually make use of this. (b) This way, all core IRAM is DMA capable (wasn't the case before), so one less pitfall.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11482 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugin.lds')
| -rw-r--r-- | apps/plugins/plugin.lds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 484157a..f72059c 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -30,8 +30,8 @@ OUTPUT_FORMAT(elf32-sh) #define IRAMSIZE 0xc000 #elif defined(IAUDIO_X5) #define DRAMORIG 0x31000000 -#define IRAMORIG 0x10014000 -#define IRAMSIZE 0xc000 +#define IRAMORIG 0x10010000 +#define IRAMSIZE 0x10000 #elif defined(ARCH_IPOD) #define DRAMORIG 0x00000000 #define IRAMORIG 0x4000c000 |