summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-03-10 20:06:35 +0000
committerJens Arnold <amiconn@rockbox.org>2005-03-10 20:06:35 +0000
commitae4b2de6194467b290bc47319652f741fc70b7e2 (patch)
tree9b9e9280eb444a07c4a39a56fca0fc0a16f394e5 /apps
parent81b51ebe58af6647c33a7dbf89d2125bde748a35 (diff)
downloadrockbox-ae4b2de6194467b290bc47319652f741fc70b7e2.tar.gz
rockbox-ae4b2de6194467b290bc47319652f741fc70b7e2.zip
Removed unnecessary extra check.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6183 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/rockboy/rockmacros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockboy/rockmacros.h b/apps/plugins/rockboy/rockmacros.h
index 74398c75ab..a6ca0f7231 100644
--- a/apps/plugins/rockboy/rockmacros.h
+++ b/apps/plugins/rockboy/rockmacros.h
@@ -65,7 +65,7 @@ void savestate(int fd);
#define open(a,b) rb->sim_open((a),(b))
#undef lseek
#define lseek(a,b,c) rb->sim_lseek((a),(b),(c))
-#define ICODE_ATTR
+#define ICODE_ATTR
#define IDATA_ATTR
#else /* !SIMULATOR */
#define opendir(a) rb->opendir((a))
@@ -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_CPU == MCF5249 && !defined(SIMULATOR)
+#if CONFIG_CPU == MCF5249
#define ICODE_ATTR __attribute__ ((section(".icode")))
#define IDATA_ATTR __attribute__ ((section(".idata")))
#define USE_IRAM 1