aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/new_dynarec
diff options
context:
space:
mode:
authornotaz2011-03-17 01:11:43 +0200
committernotaz2011-03-17 01:11:43 +0200
commit149a4d341379a9aa191b63fa3b78d28d33d5c19d (patch)
tree21a3742731648693b2911680f92a2f97298758e5 /libpcsxcore/new_dynarec
parentdadf55f230286fe187e44370758723b35b8c7efb (diff)
downloadpcsx_rearmed-149a4d341379a9aa191b63fa3b78d28d33d5c19d.tar.gz
pcsx_rearmed-149a4d341379a9aa191b63fa3b78d28d33d5c19d.tar.bz2
pcsx_rearmed-149a4d341379a9aa191b63fa3b78d28d33d5c19d.zip
minor debug code updates
Diffstat (limited to 'libpcsxcore/new_dynarec')
-rw-r--r--libpcsxcore/new_dynarec/emu_if.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c
index 11ed843..5821650 100644
--- a/libpcsxcore/new_dynarec/emu_if.c
+++ b/libpcsxcore/new_dynarec/emu_if.c
@@ -99,9 +99,6 @@ static void irq_test(void)
void gen_interupt()
{
evprintf(" +ge %08x, %u->%u\n", psxRegs.pc, psxRegs.cycle, next_interupt);
-#ifdef DRC_DBG
- psxRegs.cycle += 2;
-#endif
irq_test();
//psxBranchTest();
@@ -164,7 +161,7 @@ static int ari64_init()
for (i = 0; i < ARRAY_SIZE(gte_handlers); i++)
if (psxCP2[i] != psxNULL)
gte_handlers[i] = psxCP2[i];
-#ifdef __arm__
+#if defined(__arm__) && !defined(DRC_DBG)
gte_handlers[0x01] = gteRTPS_neon;
gte_handlers[0x30] = gteRTPT_neon;
gte_handlers[0x12] = gteMVMVA_neon;