Enable assembler optimisations for ARM targets

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8247 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-12-16 10:30:22 +00:00
parent a3226c15e7
commit d22938286e
2 changed files with 6 additions and 0 deletions

View file

@ -12,3 +12,6 @@ version.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
imdct_mcf5249.S
#endif
#if defined(CPU_ARM) && !defined(SIMULATOR)
imdct_l_arm.S
#endif

View file

@ -26,6 +26,9 @@
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
#define FPM_COLDFIRE_EMAC
#elif defined(CPU_ARM) && !defined(SIMULATOR)
#define FPM_ARM
#define ASO_IMDCT
#else
#define FPM_DEFAULT
#endif