summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-03-10 20:02:41 +0000
committerJens Arnold <amiconn@rockbox.org>2005-03-10 20:02:41 +0000
commit81b51ebe58af6647c33a7dbf89d2125bde748a35 (patch)
tree4b9a092a2cda81a84a0969ff0b20106f20171481 /apps/plugins
parent657fdf26f298a7a01bf20140af1a2f5444b9d700 (diff)
downloadrockbox-81b51ebe58af6647c33a7dbf89d2125bde748a35.zip
rockbox-81b51ebe58af6647c33a7dbf89d2125bde748a35.tar.gz
rockbox-81b51ebe58af6647c33a7dbf89d2125bde748a35.tar.bz2
rockbox-81b51ebe58af6647c33a7dbf89d2125bde748a35.tar.xz
Made the IRAM usage depend on the CPU type.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6182 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/rockboy/rockmacros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockboy/rockmacros.h b/apps/plugins/rockboy/rockmacros.h
index 9f8cdae..74398c7 100644
--- a/apps/plugins/rockboy/rockmacros.h
+++ b/apps/plugins/rockboy/rockmacros.h
@@ -73,7 +73,7 @@ void savestate(int fd);
#define mkdir(a,b) rb->mkdir((a),(b))
#define open(a,b) rb->open((a),(b))
#define lseek(a,b,c) rb->lseek((a),(b),(c))
-#if CONFIG_KEYPAD == IRIVER_H100_PAD
+#if CONFIG_CPU == MCF5249 && !defined(SIMULATOR)
#define ICODE_ATTR __attribute__ ((section(".icode")))
#define IDATA_ATTR __attribute__ ((section(".idata")))
#define USE_IRAM 1