aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/psxcounters.c
diff options
context:
space:
mode:
authornotaz2011-12-05 02:34:30 +0200
committernotaz2011-12-05 02:34:30 +0200
commit53c361f0abe1fca37806bec2c20afc661c998df6 (patch)
tree7562223c22668b46f73884add7791a63ab9ea8be /libpcsxcore/psxcounters.c
parent47232ea4c27983ff2cffd3f697d66c6c0058c88c (diff)
downloadpcsx_rearmed-53c361f0abe1fca37806bec2c20afc661c998df6.tar.gz
pcsx_rearmed-53c361f0abe1fca37806bec2c20afc661c998df6.tar.bz2
pcsx_rearmed-53c361f0abe1fca37806bec2c20afc661c998df6.zip
psxcounters: handle overflow = target case
otherwise would need multiple calls to psxRcntUpdate() to get overflow irq, but currently psxRcntUpdate() is only called once.
Diffstat (limited to 'libpcsxcore/psxcounters.c')
-rw-r--r--libpcsxcore/psxcounters.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c
index 7317c87..2ea7c63 100644
--- a/libpcsxcore/psxcounters.c
+++ b/libpcsxcore/psxcounters.c
@@ -190,6 +190,8 @@ void psxRcntReset( u32 index )
{
u32 count;
+ rcnts[index].mode |= RcUnknown10;
+
if( rcnts[index].counterState == CountToTarget )
{
if( rcnts[index].mode & RcCountToTarget )
@@ -218,8 +220,14 @@ void psxRcntReset( u32 index )
}
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;
@@ -242,8 +250,6 @@ void psxRcntReset( u32 index )
rcnts[index].mode |= RcOverflow;
}
- rcnts[index].mode |= RcUnknown10;
-
psxRcntSet();
}