diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-09 07:46:42 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-09 07:46:42 +0000 |
| commit | 62c768c0db601fa1cc8532bb583060f2a8080453 (patch) | |
| tree | 96c83ffdb5f8b0edc3dc1e0f6fc417a60d607bc9 /firmware/app.lds | |
| parent | f69c77933c7fca7b72dfc6aa94cbe03651a149f8 (diff) | |
| download | rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.zip rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.gz rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.bz2 rockbox-62c768c0db601fa1cc8532bb583060f2a8080453.tar.xz | |
Recovered from my major brain failure and reverted to using the same load address for both H110 and H120/140
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7082 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/app.lds')
| -rw-r--r-- | firmware/app.lds | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/firmware/app.lds b/firmware/app.lds index 5816f40..135e521 100644 --- a/firmware/app.lds +++ b/firmware/app.lds @@ -113,14 +113,10 @@ _pluginbuf = 0; #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGINSIZE - STUBOFFSET - CODECSIZE -#ifdef IRIVER_H100_SERIES -#define IRAMSIZE 0x10000 -#define IRAMORIG 0x10000000 -#ifdef IRIVER_H100 -#define DRAMORIG 0x30000000 + STUBOFFSET -#else /* H120/H140 */ +#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300) #define DRAMORIG 0x31000000 + STUBOFFSET -#endif +#define IRAMORIG 0x10000000 +#define IRAMSIZE 0x10000 #else #define DRAMORIG 0x09000000 + STUBOFFSET #define IRAMORIG 0x0f000000 |