From bc54fbd673fcdd7ac518f67e61af50c67380e8e4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 4 Feb 2005 12:25:18 +0000 Subject: set the start address for iRiver plugins (this is still not working) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5782 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/plugin.lds | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'apps/plugins') diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 071630f681..a849046b74 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -8,9 +8,21 @@ OUTPUT_FORMAT(elf32-m68k) OUTPUT_FORMAT(elf32-sh) #endif +#ifdef DEBUG +#define STUBOFFSET 0x10000 +#else +#define STUBOFFSET 0 +#endif + +#ifdef IRIVER_H100 +#define DRAMORIG 0x30000000 +#else +#define DRAMORIG 0x09000000 + STUBOFFSET +#endif + #define PLUGIN_LENGTH 0x8000 #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGIN_LENGTH -#define PLUGIN_ORIGIN (0x09000000 + (DRAMSIZE)) +#define PLUGIN_ORIGIN (DRAMORIG + (DRAMSIZE)) MEMORY { -- cgit v1.2.3