Just adding a log to devel builds. This is a curious case we want to be notified about.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5478 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2012-12-13 14:44:36 +00:00
parent 71065506c1
commit 7f45b21be1
1 changed files with 7 additions and 0 deletions

View File

@ -414,6 +414,13 @@ void V_Core::DoDMAwrite(u16* pMem, u32 size)
DebugCores[Index].dmaFlag = 2;
}
if(MsgToConsole())
{
if (TSA > 0xfffff){
ConLog("* SPU2-X: Transfer Start Address out of bounds. TSA is %x\n", TSA);
}
}
TSA &= 0xfffff;
bool adma_enable = ((AutoDMACtrl&(Index+1))==(Index+1));