mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/branches/pcsx2_0.9.2@159 96395faa-99c1-11dd-bbfe-3dabce05a288
631 lines
18 KiB
C
631 lines
18 KiB
C
/* Pcsx2 - Pc Ps2 Emulator
|
|
* Copyright (C) 2002-2003 Pcsx2 Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include "PsxCommon.h"
|
|
|
|
psxCounter psxCounters[8];
|
|
u32 psxNextCounter, psxNextsCounter;
|
|
static int cnts = 6;
|
|
u8 psxhblankgate = 0;
|
|
u8 psxvblankgate = 0;
|
|
u8 psxcntmask = 0;
|
|
|
|
static void psxRcntUpd16(u32 index) {
|
|
//psxCounters[index].sCycle = psxRegs.cycle;
|
|
psxCounters[index].sCycleT = psxRegs.cycle - (psxRegs.cycle % psxCounters[index].rate);
|
|
|
|
//psxCounters[index].Cycle = (0xffff - psxCounters[index].count) * psxCounters[index].rate;
|
|
//psxCounters[index].CycleT = (psxCounters[index].target - psxCounters[index].count) * psxCounters[index].rate;
|
|
}
|
|
|
|
static void psxRcntUpd32(u32 index) {
|
|
//psxCounters[index].sCycle = psxRegs.cycle;
|
|
psxCounters[index].sCycleT = psxRegs.cycle - (psxRegs.cycle % psxCounters[index].rate);
|
|
|
|
//psxCounters[index].Cycle = (0xfffee000 - psxCounters[index].count) * psxCounters[index].rate;
|
|
//psxCounters[index].CycleT = (psxCounters[index].target - psxCounters[index].count) * psxCounters[index].rate;
|
|
}
|
|
|
|
static void psxRcntReset16(u32 index) {
|
|
psxCounters[index].count = 0;
|
|
|
|
psxCounters[index].mode&= ~0x18301C00;
|
|
psxRcntUpd16(index);
|
|
}
|
|
|
|
static void psxRcntReset32(u32 index) {
|
|
psxCounters[index].count = 0;
|
|
|
|
psxCounters[index].mode&= ~0x18301C00;
|
|
psxRcntUpd32(index);
|
|
}
|
|
|
|
static void psxRcntSet() {
|
|
u32 c;
|
|
int i;
|
|
|
|
psxNextCounter = 0xffffffff;
|
|
psxNextsCounter = psxRegs.cycle;
|
|
|
|
for (i=0; i<3; i++) {
|
|
c = (u32)(0xffff - psxRcntCycles(i)) * psxCounters[i].rate;
|
|
if (c < psxNextCounter) {
|
|
psxNextCounter = c;
|
|
}
|
|
//if(psxCounters[i].mode & 0x0800) continue;
|
|
c = (u32)(psxCounters[i].target - psxRcntCycles(i)) * psxCounters[i].rate;
|
|
if (c < psxNextCounter) {
|
|
psxNextCounter = c;
|
|
}
|
|
}
|
|
for (i=3; i<6; i++) {
|
|
c = (u32)(0xfffee000 - psxRcntCycles(i)) * psxCounters[i].rate;
|
|
if (c < psxNextCounter) {
|
|
psxNextCounter = c;
|
|
}
|
|
//if(psxCounters[i].mode & 0x0800) continue;
|
|
c = (u32)(psxCounters[i].target - psxRcntCycles(i)) * psxCounters[i].rate;
|
|
if (c < psxNextCounter) {
|
|
psxNextCounter = c;
|
|
}
|
|
}
|
|
|
|
c = (u32)(psxCounters[6].CycleT - (psxRegs.cycle - psxCounters[6].sCycleT)) ;
|
|
if (c < psxNextCounter) {
|
|
psxNextCounter = c;
|
|
}
|
|
}
|
|
|
|
|
|
void psxRcntInit() {
|
|
int i;
|
|
|
|
memset(psxCounters, 0, sizeof(psxCounters));
|
|
|
|
for (i=0; i<3; i++) {
|
|
psxCounters[i].rate = 1;
|
|
psxCounters[i].mode|= 0x0400;
|
|
psxCounters[i].target = 0x0;
|
|
}
|
|
for (i=3; i<6; i++) {
|
|
psxCounters[i].rate = 1;
|
|
psxCounters[i].mode|= 0x0400;
|
|
psxCounters[i].target = 0x0;
|
|
}
|
|
|
|
psxCounters[0].interrupt = 0x10;
|
|
psxCounters[1].interrupt = 0x20;
|
|
psxCounters[2].interrupt = 0x40;
|
|
|
|
psxCounters[3].interrupt = 0x04000;
|
|
psxCounters[4].interrupt = 0x08000;
|
|
psxCounters[5].interrupt = 0x10000;
|
|
|
|
if (SPU2async != NULL) {
|
|
cnts = 7;
|
|
|
|
psxCounters[6].rate = 1;
|
|
psxCounters[6].CycleT = 48000;
|
|
psxCounters[6].mode = 0x8;
|
|
} else cnts = 6;
|
|
|
|
for (i=0; i<3; i++)
|
|
psxCounters[i].sCycleT = psxRegs.cycle;
|
|
for (i=3; i<6; i++)
|
|
psxCounters[i].sCycleT = psxRegs.cycle;
|
|
for (i=6; i<cnts; i++)
|
|
psxCounters[i].sCycleT = psxRegs.cycle;
|
|
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxVSyncStart() {
|
|
cdvdVsync();
|
|
psxHu32(0x1070)|= 1;
|
|
if(psxvblankgate & 1) psxCheckStartGate(1);
|
|
if(psxvblankgate & (1 << 3)) psxCheckStartGate(3);
|
|
}
|
|
|
|
void psxVSyncEnd() {
|
|
psxHu32(0x1070)|= 0x800;
|
|
if(psxvblankgate & 1) psxCheckEndGate(1);
|
|
if(psxvblankgate & (1 << 3)) psxCheckEndGate(3);
|
|
}
|
|
void psxCheckEndGate(int counter) { //Check Gate events when Vsync Ends
|
|
int i = counter;
|
|
//SysPrintf("End Gate %x\n", counter);
|
|
if(counter < 3){ //Gates for 16bit counters
|
|
if((psxCounters[i].mode & 0x1) == 0) return; //Ignore Gate
|
|
|
|
switch((psxCounters[i].mode & 0x6) >> 1) {
|
|
case 0x0: //GATE_ON_count
|
|
psxCounters[i].count += (u16)psxRcntRcount16(i); //Only counts when signal is on
|
|
break;
|
|
case 0x1: //GATE_ON_ClearStart
|
|
if(psxCounters[i].mode & 0x10000000)psxRcntUpd16(i);
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
case 0x2: //GATE_ON_Clear_OFF_Start
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
psxRcntUpd16(i);
|
|
break;
|
|
case 0x3: //GATE_ON_Start
|
|
break;
|
|
default:
|
|
SysPrintf("PCSX2 Warning: 16bit IOP Counter Gate Not Set!\n");
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(counter >= 3){ //Gates for 32bit counters
|
|
if((psxCounters[i].mode & 0x1) == 0) return; //Ignore Gate
|
|
|
|
switch((psxCounters[i].mode & 0x6) >> 1) {
|
|
case 0x0: //GATE_ON_count
|
|
psxCounters[i].count += (u32)psxRcntRcount32(i); //Only counts when signal is on
|
|
break;
|
|
case 0x1: //GATE_ON_ClearStart
|
|
if(psxCounters[i].mode & 0x10000000)psxRcntUpd32(i);
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
case 0x2: //GATE_ON_Clear_OFF_Start
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
psxRcntUpd32(i);
|
|
break;
|
|
case 0x3: //GATE_ON_Start
|
|
break;
|
|
default:
|
|
SysPrintf("PCSX2 Warning: 32bit IOP Counter Gate Not Set!\n");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
void psxCheckStartGate(int counter) { //Check Gate events when Vsync Starts
|
|
int i = counter;
|
|
|
|
if(counter < 3){ //Gates for 16bit counters
|
|
if((psxCounters[i].mode & 0x1) == 0) return; //Ignore Gate
|
|
SysPrintf("PSX Gate %x\n", i);
|
|
switch((psxCounters[i].mode & 0x6) >> 1) {
|
|
case 0x0: //GATE_ON_count
|
|
psxRcntUpd32(i);
|
|
psxCounters[i].mode |= 0x10000000;
|
|
break;
|
|
case 0x1: //GATE_ON_ClearStart
|
|
if(psxCounters[i].mode & 0x10000000)psxRcntUpd16(i);
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
case 0x2: //GATE_ON_Clear_OFF_Start
|
|
psxRcntReset32(i);
|
|
psxCounters[i].mode |= 0x10000000;
|
|
break;
|
|
case 0x3: //GATE_ON_Start
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
default:
|
|
SysPrintf("PCSX2 Warning: 16bit IOP Counter Gate Not Set!\n");
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(counter >= 3){ //Gates for 32bit counters
|
|
if((psxCounters[i].mode & 0x1) == 0) return; //Ignore Gate
|
|
SysPrintf("PSX Gate %x\n", i);
|
|
switch((psxCounters[i].mode & 0x6) >> 1) {
|
|
case 0x0: //GATE_ON_count
|
|
psxRcntUpd32(i);
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
case 0x1: //GATE_ON_ClearStart
|
|
if(psxCounters[i].mode & 0x10000000)psxRcntUpd32(i);
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
case 0x2: //GATE_ON_Clear_OFF_Start
|
|
psxRcntReset32(i);
|
|
psxCounters[i].mode |= 0x10000000;
|
|
break;
|
|
case 0x3: //GATE_ON_Start
|
|
psxCounters[i].mode &= ~0x10000000;
|
|
break;
|
|
default:
|
|
SysPrintf("PCSX2 Warning: 32bit IOP Counter Gate Not Set!\n");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void _testRcnt16target(int i) {
|
|
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("[%d] target 0x%x >= 0x%x (CycleT); count=0x%x, target=0x%x\n", i, (psxRegs.cycle - psxCounters[i].sCycleT), psxCounters[i].CycleT, psxRcntRcount16(i), psxCounters[i].target);
|
|
#endif
|
|
|
|
psxCounters[i].mode|= 0x0800; // Target flag
|
|
if(psxCounters[i].mode & 0x80)
|
|
if (psxCounters[i].mode & 0x10)psxCounters[i].mode&= ~0x0400; // Interrupt flag
|
|
|
|
if (psxCounters[i].mode & 0x10) // Target interrupt
|
|
psxHu32(0x1070)|= psxCounters[i].interrupt;
|
|
|
|
|
|
if (psxCounters[i].mode & 0x08) { // Reset on target
|
|
psxCounters[i].count = 0;
|
|
psxRcntUpd16(i);
|
|
return;
|
|
}
|
|
if(!(psxCounters[i].mode & 0x40))psxcntmask |= (1<<i);
|
|
else psxcntmask &= ~(1<<i);
|
|
}
|
|
|
|
void _testRcnt16overflow(int i) {
|
|
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("[%d] overflow 0x%x >= 0x%x (Cycle); Rcount=0x%x, count=0x%x\n", i, (psxRegs.cycle - psxCounters[i].sCycle) / psxCounters[i].rate, psxCounters[i].Cycle, psxRcntRcount16(i), psxCounters[i].count);
|
|
#endif
|
|
|
|
psxCounters[i].mode|= 0x1000; // Overflow flag
|
|
if (psxCounters[i].mode & 0x0020) { // Overflow interrupt
|
|
psxHu32(0x1070)|= psxCounters[i].interrupt;
|
|
if(psxCounters[i].mode & 0x80)
|
|
psxCounters[i].mode&= ~0x0400; // Interrupt flag
|
|
}
|
|
psxCounters[i].count = 0;
|
|
psxcntmask &= ~(1<<i);
|
|
psxRcntUpd16(i);
|
|
}
|
|
|
|
void _testRcnt32target(int i) {
|
|
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("[%d] target 0x%x >= 0x%x (CycleT); count=0x%x, target=0x%x\n", i, (psxRegs.cycle - psxCounters[i].sCycleT), psxCounters[i].CycleT, psxRcntRcount32(i), psxCounters[i].target);
|
|
#endif
|
|
|
|
psxCounters[i].mode|= 0x0800; // Target flag
|
|
if(psxCounters[i].mode & 0x80)
|
|
if (psxCounters[i].mode & 0x10)psxCounters[i].mode&= ~0x0400; // Interrupt flag
|
|
|
|
|
|
if (psxCounters[i].mode & 0x10) // Target interrupt
|
|
psxHu32(0x1070)|= psxCounters[i].interrupt;
|
|
|
|
|
|
if (psxCounters[i].mode & 0x8) { // Reset on target
|
|
psxCounters[i].count = 0;
|
|
psxRcntUpd32(i);
|
|
return;
|
|
}
|
|
if(!(psxCounters[i].mode & 0x40))psxcntmask |= (1<<i);
|
|
else psxcntmask &= ~(1<<i);
|
|
}
|
|
|
|
void _testRcnt32overflow(int i) {
|
|
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("[%d] overflow 0x%x >= 0x%x (Cycle); Rcount=0x%x, count=0x%x\n", i, (psxRegs.cycle - psxCounters[i].sCycle), psxCounters[i].Cycle, psxRcntRcount32(i), psxCounters[i].count);
|
|
#endif
|
|
|
|
psxCounters[i].mode|= 0x1000; // Overflow flag
|
|
if (psxCounters[i].mode & 0x0020) { // Overflow interrupt
|
|
psxHu32(0x1070)|= psxCounters[i].interrupt;
|
|
if(psxCounters[i].mode & 0x80)
|
|
psxCounters[i].mode&= ~0x0400; // Interrupt flag
|
|
}
|
|
psxCounters[i].count = 0;
|
|
psxcntmask &= ~(1<<i);
|
|
psxRcntUpd32(i);
|
|
}
|
|
|
|
|
|
void _testRcnt16(int i) {
|
|
|
|
if(!(psxHu32(0x1070) & psxCounters[i].interrupt)) {
|
|
psxCounters[i].mode &= ~0x1800;
|
|
psxCounters[i].mode |= 0x400;
|
|
}
|
|
if (!(psxcntmask & (1<<i)) && psxCounters[i].count >= psxCounters[i].target){
|
|
_testRcnt16target(i);
|
|
}
|
|
|
|
if ((u32)psxRcntCycles(i) >= 0xffff)
|
|
_testRcnt16overflow(i);
|
|
}
|
|
|
|
void _testRcnt32(int i) {
|
|
|
|
if(!(psxHu32(0x1070) & psxCounters[i].interrupt)) {
|
|
psxCounters[i].mode &= ~0x1800;
|
|
psxCounters[i].mode |= 0x400;
|
|
}
|
|
if (!(psxcntmask & (1<<i)) && psxCounters[i].count >= psxCounters[i].target){
|
|
_testRcnt32target(i);
|
|
}
|
|
|
|
if (psxRcntCycles(i) >= 0xfffee000)
|
|
_testRcnt32overflow(i);
|
|
}
|
|
|
|
void psxRcntUpdate() {
|
|
int i;
|
|
for (i=0; i<=5; i++) {
|
|
psxCounters[i].count += (psxRegs.cycle - psxCounters[i].sCycleT) / psxCounters[i].rate;
|
|
psxCounters[i].sCycleT = psxRegs.cycle - (psxRegs.cycle % psxCounters[i].rate);
|
|
}
|
|
_testRcnt16(0);
|
|
_testRcnt16(1);
|
|
_testRcnt16(2);
|
|
_testRcnt32(3);
|
|
_testRcnt32(4);
|
|
_testRcnt32(5);
|
|
|
|
if (cnts >= 7 && (psxRegs.cycle - psxCounters[6].sCycleT) >= psxCounters[6].CycleT) {
|
|
SPU2async(psxRegs.cycle - psxCounters[6].sCycleT);//(u32)(psxRegs.cycle - psxNextsCounter));
|
|
psxCounters[6].sCycleT = psxRegs.cycle;
|
|
}
|
|
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcntWcount16(int index, u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("writeCcount[%d] = %x\n", index, value);
|
|
#endif
|
|
SysPrintf("Write to 16bit count reg counter %x\n",index);
|
|
psxCounters[index].count = value & 0xffff;
|
|
SysPrintf("Counter %x count write %x\n", index, value);
|
|
psxRcntUpd16(index);
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcntWcount32(int index, u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("writeCcount[%d] = %x\n", index, value);
|
|
#endif
|
|
SysPrintf("Write to 32bit count reg counter %x\n", index);
|
|
psxCounters[index].count = value;
|
|
SysPrintf("Counter %x count write %x\n", index, value);
|
|
psxRcntUpd32(index);
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcnt0Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
//PSXCNT_LOG("IOP writeCmode[0] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 0 Value write %x\n", value & 0x1c00);
|
|
}
|
|
|
|
psxCounters[0].mode = value;
|
|
psxCounters[0].mode|= 0x0400;
|
|
psxCounters[0].rate = 1;
|
|
psxcntmask &= ~(1);
|
|
if(value & 0x100) psxCounters[0].rate = PSXPIXEL;
|
|
|
|
if(psxCounters[0].mode & 0x1){
|
|
SysPrintf("Gate Check set on Counter 0\n");
|
|
psxCounters[0].mode|= 0x1000000;
|
|
psxhblankgate |= 1;
|
|
}else
|
|
psxhblankgate &= ~1;
|
|
|
|
psxCounters[0].count = 0;
|
|
psxRcntUpd16(0);
|
|
psxRcntSet();
|
|
//}
|
|
}
|
|
|
|
void psxRcnt1Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("IOP writeCmode[1] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 1 Value write %x\n", value & 0x1c00);
|
|
}
|
|
|
|
psxCounters[1].mode = value;
|
|
psxCounters[1].mode|= 0x0400;
|
|
psxCounters[1].rate = 1;
|
|
psxcntmask &= ~(1<<1);
|
|
if(value & 0x100)psxCounters[1].rate = PSXHBLANK;
|
|
|
|
if(psxCounters[1].mode & 0x1){
|
|
SysPrintf("Gate Check set on Counter 1\n");
|
|
psxCounters[1].mode|= 0x1000000;
|
|
psxvblankgate |= 1<<1;
|
|
}else
|
|
psxvblankgate &= ~(1<<1);
|
|
|
|
psxCounters[1].count = 0;
|
|
psxRcntUpd16(1);
|
|
psxRcntSet();
|
|
//}
|
|
}
|
|
|
|
void psxRcnt2Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("IOP writeCmode[2] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 2 Value write %x\n", value & 0x1c00);
|
|
}
|
|
|
|
psxcntmask &= ~(1<<2);
|
|
psxCounters[2].mode = value;
|
|
psxCounters[2].mode|= 0x0400;
|
|
|
|
switch(value & 0x200){
|
|
case 0x200:
|
|
psxCounters[2].rate = 8;
|
|
break;
|
|
case 0x000:
|
|
psxCounters[2].rate = 1;
|
|
break;
|
|
}
|
|
|
|
if((psxCounters[2].mode & 0x7) == 0x7 || (psxCounters[2].mode & 0x7) == 0x1){
|
|
SysPrintf("Gate set on IOP C2, disabling\n");
|
|
psxCounters[2].mode|= 0x1000000;
|
|
}
|
|
// Need to set a rate and target
|
|
psxCounters[2].count = 0;
|
|
psxRcntUpd16(2);
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcnt3Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("IOP writeCmode[3] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 3 Value write %x\n", value & 0x1c00);
|
|
}
|
|
|
|
psxcntmask &= ~(1<<3);
|
|
psxCounters[3].mode = value;
|
|
psxCounters[3].rate = 1;
|
|
psxCounters[3].mode|= 0x0400;
|
|
|
|
if(value & 0x100)psxCounters[3].rate = PSXHBLANK;
|
|
|
|
if(psxCounters[3].mode & 0x1){
|
|
SysPrintf("Gate Check set on Counter 3\n");
|
|
psxCounters[3].mode|= 0x1000000;
|
|
psxvblankgate |= 1<<3;
|
|
}else
|
|
psxvblankgate &= ~(1<<3);
|
|
|
|
psxCounters[3].count = 0;
|
|
psxRcntUpd32(3);
|
|
psxRcntSet();
|
|
//}
|
|
}
|
|
|
|
void psxRcnt4Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("IOP writeCmode[4] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 4 Value write %x\n", value & 0x1c00);
|
|
}
|
|
|
|
psxcntmask &= ~(1<<4);
|
|
psxCounters[4].mode = value;
|
|
psxCounters[4].mode|= 0x0400;
|
|
|
|
switch(value & 0x6000){
|
|
case 0x0000:
|
|
psxCounters[4].rate = 1;
|
|
break;
|
|
case 0x2000:
|
|
psxCounters[4].rate = 8;
|
|
break;
|
|
case 0x4000:
|
|
psxCounters[4].rate = 16;
|
|
break;
|
|
case 0x6000:
|
|
psxCounters[4].rate = 256;
|
|
break;
|
|
}
|
|
// Need to set a rate and target
|
|
if((psxCounters[4].mode & 0x7) == 0x7 || (psxCounters[4].mode & 0x7) == 0x1){
|
|
SysPrintf("Gate set on IOP C4, disabling\n");
|
|
psxCounters[4].mode|= 0x1000000;
|
|
}
|
|
psxCounters[4].count = 0;
|
|
psxRcntUpd32(4);
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcnt5Wmode(u32 value) {
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("IOP writeCmode[5] = %lx\n", value);
|
|
#endif
|
|
if (value & 0x1c00) {
|
|
SysPrintf("Counter 5 Value write %x\n", value & 0x1c00);
|
|
}
|
|
psxcntmask &= ~(1<<5);
|
|
psxCounters[5].mode = value;
|
|
psxCounters[5].mode|= 0x0400;
|
|
|
|
switch(value & 0x6000){
|
|
case 0x0000:
|
|
psxCounters[5].rate = 1;
|
|
break;
|
|
case 0x2000:
|
|
psxCounters[5].rate = 8;
|
|
break;
|
|
case 0x4000:
|
|
psxCounters[5].rate = 16;
|
|
break;
|
|
case 0x6000:
|
|
psxCounters[5].rate = 256;
|
|
break;
|
|
}
|
|
// Need to set a rate and target
|
|
if((psxCounters[5].mode & 0x7) == 0x7 || (psxCounters[5].mode & 0x7) == 0x1){
|
|
SysPrintf("Gate set on IOP C5, disabling\n");
|
|
psxCounters[5].mode|= 0x1000000;
|
|
}
|
|
psxCounters[5].count = 0;
|
|
psxRcntUpd32(5);
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcntWtarget16(int index, u32 value) {
|
|
//if(psxCounters[index].sCycleT > psxRegs.cycle) ReSyncTarget(index);
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("writeCtarget16[%ld] = %lx\n", index, value);
|
|
#endif
|
|
psxCounters[index].target = value & 0xffff;
|
|
psxRcntSet();
|
|
}
|
|
|
|
void psxRcntWtarget32(int index, u32 value) {
|
|
//if(psxCounters[index].sCycleT > psxRegs.cycle) ReSyncTarget(index);
|
|
psxCounters[index].target = value;
|
|
|
|
#ifdef PSXCNT_LOG
|
|
PSXCNT_LOG("writeCtarget32[%ld] = %lx (count=%lx) ; sCycleT: %x CycleT: %x\n",
|
|
index, value, psxRcntRcount32(index), psxCounters[index].sCycleT, psxCounters[index].CycleT);
|
|
#endif
|
|
//if(index == 5) SysPrintf("Counter 5 tar set CT %x, Tar %x, mode %x, psx.cycle %x\n", psxCounters[index].CycleT + psxCounters[index].sCycleT, psxCounters[index].target, psxCounters[index].mode, psxRegs.cycle);
|
|
psxRcntSet();
|
|
}
|
|
|
|
u16 psxRcntRcount16(int index) {
|
|
if(psxCounters[index].mode & 0x1000000) return psxCounters[index].count;
|
|
return (u16)(psxCounters[index].count + (psxRegs.cycle - psxCounters[index].sCycleT) / psxCounters[index].rate);
|
|
}
|
|
|
|
u32 psxRcntRcount32(int index) {
|
|
if(psxCounters[index].mode & 0x1000000) return psxCounters[index].count;
|
|
return (u32)(psxCounters[index].count + (psxRegs.cycle - psxCounters[index].sCycleT) / psxCounters[index].rate);
|
|
}
|
|
|
|
u64 psxRcntCycles(int index) {
|
|
if(psxCounters[index].mode & 0x1000000) return psxCounters[index].count;
|
|
return (u64)(psxCounters[index].count + (psxRegs.cycle - psxCounters[index].sCycleT) / psxCounters[index].rate);
|
|
}
|
|
|
|
int psxRcntFreeze(gzFile f, int Mode) {
|
|
gzfreezel(psxCounters);
|
|
|
|
return 0;
|
|
}
|