diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-11-15 00:35:07 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-11-15 00:35:07 +0000 |
| commit | 3e8a2bfa12e3a0ce461b130cfc7e3e0ed8f13ac9 (patch) | |
| tree | 428b0012bd83d74ba7256596574ec7e781a0819d /apps/codecs/demac | |
| parent | dcb0e43148c2900db6ef05cacd7d8f313a55dbce (diff) | |
| download | rockbox-3e8a2bfa12e3a0ce461b130cfc7e3e0ed8f13ac9.zip rockbox-3e8a2bfa12e3a0ce461b130cfc7e3e0ed8f13ac9.tar.gz rockbox-3e8a2bfa12e3a0ce461b130cfc7e3e0ed8f13ac9.tar.bz2 rockbox-3e8a2bfa12e3a0ce461b130cfc7e3e0ed8f13ac9.tar.xz | |
Make the standalone demac program compile again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19107 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/demac')
| -rw-r--r-- | apps/codecs/demac/libdemac/demac_iram.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/codecs/demac/libdemac/demac_iram.h b/apps/codecs/demac/libdemac/demac_iram.h index fb6965a..5dd02f8 100644 --- a/apps/codecs/demac/libdemac/demac_iram.h +++ b/apps/codecs/demac/libdemac/demac_iram.h @@ -25,6 +25,7 @@ #ifndef _LIBDEMAC_IRAM_H #define _LIBDEMAC_IRAM_H +#ifdef ROCKBOX #include "config.h" /* On PP5002 code should go into IRAM. Otherwise put the insane @@ -39,4 +40,11 @@ #define IBSS_ATTR_DEMAC_INSANEBUF IBSS_ATTR #endif +#else + +#define IBSS_ATTR_DEMAC_INSANEBUF +#define ICODE_ATTR_DEMAC + +#endif /* !ROCKBOX */ + #endif /* _LIBDEMAC_IRAM_H */ |