otherwise would need multiple calls to psxRcntUpdate() to get
overflow irq, but currently psxRcntUpdate() is only called once.
{
u32 count;
+ rcnts[index].mode |= RcUnknown10;
+
if( rcnts[index].counterState == CountToTarget )
{
if( rcnts[index].mode & RcCountToTarget )
}
rcnts[index].mode |= RcCountEqTarget;
+
+ psxRcntSet();
+
+ if( count < 0xffff ) // special case, overflow too?
+ return;
}
- else if( rcnts[index].counterState == CountToOverflow )
+
+ if( rcnts[index].counterState == CountToOverflow )
{
count = psxRegs.cycle;
count -= rcnts[index].cycleStart;
rcnts[index].mode |= RcOverflow;
}
- rcnts[index].mode |= RcUnknown10;
-
psxRcntSet();
}