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.tar.gz
rockbox-81b51ebe58af6647c33a7dbf89d2125bde748a35.zip
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 9f8cdae59f..74398c75ab 100644
--- a/apps/plugins/rockboy/rockmacros.h
+++ b/apps/plugins/rockboy/rockmacros.h
@@ -73,7 +73,7 @@ void savestate(int fd);
73#define mkdir(a,b) rb->mkdir((a),(b)) 73#define mkdir(a,b) rb->mkdir((a),(b))
74#define open(a,b) rb->open((a),(b)) 74#define open(a,b) rb->open((a),(b))
75#define lseek(a,b,c) rb->lseek((a),(b),(c)) 75#define lseek(a,b,c) rb->lseek((a),(b),(c))
76#if CONFIG_KEYPAD == IRIVER_H100_PAD 76#if CONFIG_CPU == MCF5249 && !defined(SIMULATOR)
77#define ICODE_ATTR __attribute__ ((section(".icode"))) 77#define ICODE_ATTR __attribute__ ((section(".icode")))
78#define IDATA_ATTR __attribute__ ((section(".idata"))) 78#define IDATA_ATTR __attribute__ ((section(".idata")))
79#define USE_IRAM 1 79#define USE_IRAM 1