diff options
author | notaz | 2012-11-30 02:53:25 +0200 |
---|---|---|
committer | notaz | 2012-12-02 02:37:11 +0200 |
commit | 665f33e1e8ce2e40a7939a33075c3bce1c90790c (patch) | |
tree | e698dae48cdae636961762d00fb6a42e80653dcd /plugins/dfsound | |
parent | da710571b75db7031b82924ab3ad47eb645ce215 (diff) | |
download | pcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.tar.gz pcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.tar.bz2 pcsx_rearmed-665f33e1e8ce2e40a7939a33075c3bce1c90790c.zip |
improve ARM feature detection
Diffstat (limited to 'plugins/dfsound')
-rw-r--r-- | plugins/dfsound/arm_utils.S | 3 | ||||
-rw-r--r-- | plugins/dfsound/spu.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/plugins/dfsound/arm_utils.S b/plugins/dfsound/arm_utils.S index 22e5844..f4ef243 100644 --- a/plugins/dfsound/arm_utils.S +++ b/plugins/dfsound/arm_utils.S @@ -8,6 +8,7 @@ * See the COPYING file in the top-level directory. */ +#include "arm_features.h" .text .align 2 @@ -100,7 +101,7 @@ mcr_finish: vstmiage r3!, {d8} bx lr -#else +#elif defined(HAVE_ARMV5) .global mix_chan @ (int start, int count, int lv, int rv) mix_chan: diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index 45a7886..2466569 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -25,6 +25,7 @@ #include "externals.h" #include "registers.h" #include "out.h" +#include "arm_features.h" #ifdef ENABLE_NLS #include <libintl.h> @@ -615,7 +616,7 @@ static int do_samples_noise(int ch, int ns, int ns_to) return ret; } -#ifdef __arm__ +#ifdef HAVE_ARMV5 // asm code; lv and rv must be 0-3fff extern void mix_chan(int start, int count, int lv, int rv); extern void mix_chan_rvb(int start, int count, int lv, int rv); |