32x: drc: more wip, some games work, debug stats
[picodrive.git] / cpu / sh2 / mame / sh2pico.c
index fe5b7d7..79264ac 100644 (file)
@@ -125,15 +125,6 @@ void __attribute__((regparm(2))) sh2_do_op(SH2 *sh2_, int opcode)
                case 14<<12: op1110(opcode); break;
                default: op1111(opcode); break;
        }
-
-       if (sh2->test_irq)
-       {
-               if (sh2->pending_irl > sh2->pending_int_irq)
-                       sh2_irl_irq(sh2, sh2->pending_irl);
-               else
-                       sh2_internal_irq(sh2, sh2->pending_int_irq, sh2->pending_int_vector);
-               sh2->test_irq = 0;
-       }
 }
 
 #endif