aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/new_dynarec/emu_if.c
diff options
context:
space:
mode:
authornotaz2011-09-23 19:29:03 +0300
committernotaz2011-09-23 19:29:03 +0300
commita80ae4a0353fce94df700ec84222d3c56c3d813a (patch)
treec6b2e473c33365cf8b33ab859681edf72ab06b01 /libpcsxcore/new_dynarec/emu_if.c
parentaaac9c7e007b51aa74d18975f94bffdfed01c7e8 (diff)
downloadpcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.gz
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.bz2
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.zip
support armv5 build
Diffstat (limited to 'libpcsxcore/new_dynarec/emu_if.c')
-rw-r--r--libpcsxcore/new_dynarec/emu_if.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c
index 5821650..8a068ea 100644
--- a/libpcsxcore/new_dynarec/emu_if.c
+++ b/libpcsxcore/new_dynarec/emu_if.c
@@ -161,12 +161,14 @@ static int ari64_init()
for (i = 0; i < ARRAY_SIZE(gte_handlers); i++)
if (psxCP2[i] != psxNULL)
gte_handlers[i] = psxCP2[i];
-#if defined(__arm__) && !defined(DRC_DBG)
+#ifndef DRC_DBG
+#ifdef __ARM_NEON__
gte_handlers[0x01] = gteRTPS_neon;
gte_handlers[0x30] = gteRTPT_neon;
gte_handlers[0x12] = gteMVMVA_neon;
gte_handlers[0x06] = gteNCLIP_neon;
#endif
+#endif
psxH_ptr = psxH;
return 0;