diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-08-12 22:43:44 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-08-12 22:43:44 +0000 |
| commit | 4e363525672f6bbfd6512ff55974d7164a8c341d (patch) | |
| tree | 4633d25f71452462c9775f5da5c5f5a89f003c57 /firmware/export | |
| parent | 4e5f4ee5e03072d8f470610f8751efcf17ad4f6a (diff) | |
| download | rockbox-4e363525672f6bbfd6512ff55974d7164a8c341d.zip rockbox-4e363525672f6bbfd6512ff55974d7164a8c341d.tar.gz rockbox-4e363525672f6bbfd6512ff55974d7164a8c341d.tar.bz2 rockbox-4e363525672f6bbfd6512ff55974d7164a8c341d.tar.xz | |
Iriver iFP7xx memory layout adjustment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10553 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/config-ifp7xx.h | 4 | ||||
| -rw-r--r-- | firmware/export/config.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/firmware/export/config-ifp7xx.h b/firmware/export/config-ifp7xx.h index 6247625..4d89099 100644 --- a/firmware/export/config-ifp7xx.h +++ b/firmware/export/config-ifp7xx.h @@ -33,10 +33,10 @@ #define HAVE_SW_POWEROFF /* The number of bytes reserved for loadable codecs */ -#define CODEC_SIZE 0x30000 +#define CODEC_SIZE 0x20000 /* The number of bytes reserved for loadable plugins */ -#define PLUGIN_BUFFER_SIZE 0x20000 +#define PLUGIN_BUFFER_SIZE 0x10000 /* Define this if you have the WM8975 audio codec */ /* #define HAVE_WM8975 */ diff --git a/firmware/export/config.h b/firmware/export/config.h index f00ac64..a934211 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -247,7 +247,8 @@ defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ (CONFIG_CPU == PP5020) || /* iPod and H10: core, plugins, codecs */ \ (CONFIG_CPU == PP5002) || /* iPod: core, plugins, codecs */ \ - (CONFIG_CPU == TCC730)) /* CalmRISC16: core, (plugins, codecs) */ + (CONFIG_CPU == TCC730) || /* CalmRISC16: core, (plugins, codecs) */ \ + (CONFIG_CPU == PNX0101)) #define ICODE_ATTR __attribute__ ((section(".icode"))) #define ICONST_ATTR __attribute__ ((section(".irodata"))) #define IDATA_ATTR __attribute__ ((section(".idata"))) |