summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 17b3c1cdea..efaf326384 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -626,7 +626,8 @@ Lyre prototype 1*/
626 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ 626 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \
627 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ 627 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \
628 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \ 628 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \
629 (CONFIG_CPU == AS3525 && MEMORYSIZE > 2) || \ 629 (CONFIG_CPU == AS3525 && MEMORYSIZE > 2) || /* AS3525 +2MB: core, plugins, codecs */ \
630 (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525 2MB:core only */ \
630 (CONFIG_CPU == PNX0101) || \ 631 (CONFIG_CPU == PNX0101) || \
631 (CONFIG_CPU == S5L8700)) /* Samsung S5L8700: core, plugins, codecs */ 632 (CONFIG_CPU == S5L8700)) /* Samsung S5L8700: core, plugins, codecs */
632#define ICODE_ATTR __attribute__ ((section(".icode"))) 633#define ICODE_ATTR __attribute__ ((section(".icode")))
@@ -634,7 +635,7 @@ Lyre prototype 1*/
634#define IDATA_ATTR __attribute__ ((section(".idata"))) 635#define IDATA_ATTR __attribute__ ((section(".idata")))
635#define IBSS_ATTR __attribute__ ((section(".ibss"))) 636#define IBSS_ATTR __attribute__ ((section(".ibss")))
636#define USE_IRAM 637#define USE_IRAM
637#if CONFIG_CPU != SH7034 638#if CONFIG_CPU != SH7034 && (CONFIG_CPU != AS3525 || MEMORYSIZE > 2)
638#define PLUGIN_USE_IRAM 639#define PLUGIN_USE_IRAM
639#endif 640#endif
640#if defined(CPU_ARM) 641#if defined(CPU_ARM)