diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2008-11-09 10:17:41 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2008-11-09 10:17:41 +0000 |
| commit | c198bac47db4904e8e808c3727eb9f80df33bc1e (patch) | |
| tree | 1c271e7e0ec840d6ba9ea2a9ec0357c97249e684 /apps/plugins | |
| parent | 9acf856da746ad4ea82f4a8f26acc15e70e35cf3 (diff) | |
| download | rockbox-c198bac47db4904e8e808c3727eb9f80df33bc1e.zip rockbox-c198bac47db4904e8e808c3727eb9f80df33bc1e.tar.gz rockbox-c198bac47db4904e8e808c3727eb9f80df33bc1e.tar.bz2 rockbox-c198bac47db4904e8e808c3727eb9f80df33bc1e.tar.xz | |
plugin linker script: define memory sizes/origin for AS3525
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19050 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/plugin.lds | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index b26d03b..52ec938 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -86,6 +86,10 @@ OUTPUT_FORMAT(elf32-sh) #define IRAMSIZE 0xc000*/ #define IRAM DRAM #define IRAMSIZE 0 +#elif CONFIG_CPU==AS3525 +#define IRAMORIG 0x0 +#define IRAMSIZE 0x50000 +#define DRAMORIG 0x30000000 #else #define DRAMORIG 0x09000000 + STUBOFFSET #endif |