diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2010-04-25 20:04:47 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2010-04-25 20:04:47 +0000 |
commit | 91bdc3ea90035b3dae19e2f6484ea886eef94433 (patch) | |
tree | e6113841a0e3bbd00e1ad46068f5e1237d4181e7 /apps/SOURCES | |
parent | b9fa116703227ccbaca02d65d8f726f6e31ceebe (diff) |
Optimized DSP sample out functions for armv6. (For stereo output) ~9% faster than SVN asm and about 4% faster than SVN asm rearranged to observe pipeline hazards.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25717 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/SOURCES')
-rw-r--r-- | apps/SOURCES | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/SOURCES b/apps/SOURCES index 7bc263a153..66f2a7da51 100644 --- a/apps/SOURCES +++ b/apps/SOURCES @@ -158,6 +158,9 @@ dsp_cf.S eq_cf.S #elif defined(CPU_ARM) dsp_arm.S +#if ARM_ARCH >= 6 +dsp_arm_v6.S +#endif eq_arm.S #endif #endif |