diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-28 12:48:56 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-03-28 12:48:56 +0000 |
| commit | fff7d6157d56f233cad5c2003475e47a5ff809a7 (patch) | |
| tree | 4931b6266d3721ac40a2086aea2e7a202e7a9fa3 | |
| parent | e6876736d50a9efbabffadd3172bc10c302d0089 (diff) | |
| download | rockbox-fff7d6157d56f233cad5c2003475e47a5ff809a7.zip rockbox-fff7d6157d56f233cad5c2003475e47a5ff809a7.tar.gz rockbox-fff7d6157d56f233cad5c2003475e47a5ff809a7.tar.bz2 rockbox-fff7d6157d56f233cad5c2003475e47a5ff809a7.tar.xz | |
MCF5250 has IRAM too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9311 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index f990073..4ef4bd6 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -211,7 +211,7 @@ /* IRAM usage */ #if !defined(SIMULATOR) && /* Not for simulators */ \ (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ - (CONFIG_CPU == MCF5249) || /* Coldfire: core, plugins, codecs */ \ + defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ (CONFIG_CPU == PP5020) || /* iPod: core, plugins, codecs */ \ (CONFIG_CPU == PP5002) || /* iPod: core, plugins, codecs */ \ (CONFIG_CPU == TCC730)) /* CalmRISC16: core, (plugins, codecs) */ |