diff options
author | Dave Chapman <dave@dchapman.com> | 2006-01-16 12:57:46 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2006-01-16 12:57:46 +0000 |
commit | d6d5da1841119eb9ad03a6e313e3d08307392a11 (patch) | |
tree | 9708d5b15b30716e3e3d96aefb8139d81cd963d3 | |
parent | 25c66fc632e721e5b742f67b7ba2685318f807e1 (diff) |
iPod: Correct the definition of DRAMORIG for the ipod - RAM is remapped to 0x0 from its original location at 0x10000000
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8351 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/plugin.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 0626623fbf..875729dead 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -29,7 +29,7 @@ OUTPUT_FORMAT(elf32-sh) #define IRAMORIG 0x1000c000 #define IRAMSIZE 0xc000 #elif defined(ARCH_IPOD) -#define DRAMORIG 0x10000000 +#define DRAMORIG 0x00000000 #define IRAMORIG 0x4000c000 #define IRAMSIZE 0xc000 #elif CONFIG_CPU == PNX0101 |