X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=libpcsxcore%2Fnew_dynarec%2Femu_if.c;h=11ed84315b5db506a61159570e8bff3c505c01df;hp=b44feb394076172fc24396311e7cf6c59df3cef1;hb=2c8869044c0faff01c6bb8986346f78f631ceac1;hpb=cbbab9cd861a35ecc38546d7291c3cc655b4f5ed diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index b44feb39..11ed8431 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -1,5 +1,5 @@ /* - * (C) Gražvydas "notaz" Ignotas, 2010 + * (C) Gražvydas "notaz" Ignotas, 2010-2011 * * This work is licensed under the terms of GNU GPL version 2 or later. * See the COPYING file in the top-level directory. @@ -14,6 +14,7 @@ #include "../cdrom.h" #include "../psxdma.h" #include "../mdec.h" +#include "../gte_neon.h" #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) @@ -163,7 +164,12 @@ static int ari64_init() for (i = 0; i < ARRAY_SIZE(gte_handlers); i++) if (psxCP2[i] != psxNULL) gte_handlers[i] = psxCP2[i]; - +#ifdef __arm__ + gte_handlers[0x01] = gteRTPS_neon; + gte_handlers[0x30] = gteRTPT_neon; + gte_handlers[0x12] = gteMVMVA_neon; + gte_handlers[0x06] = gteNCLIP_neon; +#endif psxH_ptr = psxH; return 0; @@ -264,6 +270,7 @@ void *psxH_ptr; void new_dynarec_init() {} void new_dyna_start() {} void new_dynarec_cleanup() {} +void new_dynarec_clear_full() {} void invalidate_all_pages() {} void invalidate_block(unsigned int block) {} void new_dyna_pcsx_mem_init(void) {}