mirror of https://github.com/PCSX2/pcsx2.git
Minor log change.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3572 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
9d0a191a00
commit
7074d31651
|
@ -271,7 +271,7 @@ void GIFdma()
|
|||
|
||||
if ((dmacRegs->ctrl.STD == STD_GIF) && (prevcycles != 0))
|
||||
{
|
||||
Console.WriteLn("GS Stall Control Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3, gif->madr, psHu32(DMAC_STADR));
|
||||
//Console.WriteLn("GS Stall Control Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3, gif->madr, psHu32(DMAC_STADR));
|
||||
|
||||
if ((gif->madr + (gif->qwc * 16)) > dmacRegs->stadr.ADDR)
|
||||
{
|
||||
|
@ -345,7 +345,7 @@ void GIFdma()
|
|||
|
||||
if ((dmacRegs->ctrl.STD == STD_GIF) && (gif->chcr.MOD == NORMAL_MODE))
|
||||
{
|
||||
Console.WriteLn("DMA Stall Control on GIF normal");
|
||||
//Console.WriteLn("DMA Stall Control on GIF normal");
|
||||
}
|
||||
gifRegs->stat.FQC = min((u16)0x10, gif->qwc);// FQC=31, hack ;) (for values of 31 that equal 16) [ used to be 0xE00; // APATH=3]
|
||||
//Check with Path3 masking games
|
||||
|
@ -379,7 +379,7 @@ void GIFdma()
|
|||
{
|
||||
// stalled.
|
||||
// We really need to test this. Pay attention to prevcycles, as it used to trigger GIFchains in the code above. (rama)
|
||||
Console.WriteLn("GS Stall Control start Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3,gif->madr, psHu32(DMAC_STADR));
|
||||
//Console.WriteLn("GS Stall Control start Source = %x, Drain = %x\n MADR = %x, STADR = %x", (psHu32(0xe000) >> 4) & 0x3, (psHu32(0xe000) >> 6) & 0x3,gif->madr, psHu32(DMAC_STADR));
|
||||
prevcycles = gscycles;
|
||||
//gif->tadr -= 16;
|
||||
// Quake III revolution wants to see tadr move.
|
||||
|
|
|
@ -362,11 +362,11 @@ void hwWrite8(u32 mem, u8 value)
|
|||
oldvalue = psHu8(mem);
|
||||
if ((oldvalue & 0x3) != (value & 0x3))
|
||||
{
|
||||
DevCon.Warning("8 Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
DevCon.Warning("8bit Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
}
|
||||
if ((oldvalue & 0xC) != (value & 0xC))
|
||||
{
|
||||
DevCon.Warning("8 Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
DevCon.Warning("8bit Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
}
|
||||
psHu8(mem) = value;
|
||||
break;
|
||||
|
@ -678,11 +678,11 @@ __forceinline void hwWrite16(u32 mem, u16 value)
|
|||
oldvalue = psHu16(mem);
|
||||
if ((oldvalue & 0x30) != (value & 0x30))
|
||||
{
|
||||
DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
DevCon.Warning("16bit Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
}
|
||||
if ((oldvalue & 0xC0) != (value & 0xC0))
|
||||
{
|
||||
DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
DevCon.Warning("16bit Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
}
|
||||
psHu16(mem) = value;
|
||||
break;
|
||||
|
@ -877,11 +877,11 @@ void __fastcall hwWrite32_page_0E( u32 mem, u32 value )
|
|||
}
|
||||
if ((oldvalue & 0x30) != (value & 0x30))
|
||||
{
|
||||
DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
DevCon.Warning("32bit Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
}
|
||||
if ((oldvalue & 0xC0) != (value & 0xC0))
|
||||
{
|
||||
DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
DevCon.Warning("32bit Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -1146,11 +1146,11 @@ void __fastcall hwWrite64_page_0E( u32 mem, const mem64_t* srcval )
|
|||
}
|
||||
if ((oldvalue & 0x30) != (value & 0x30))
|
||||
{
|
||||
DevCon.Warning("Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
DevCon.Warning("64bit Stall Source Changed to %x", (value & 0x30) >> 4);
|
||||
}
|
||||
if ((oldvalue & 0xC0) != (value & 0xC0))
|
||||
{
|
||||
DevCon.Warning("Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
DevCon.Warning("64bit Stall Destination Changed to %x", (value & 0xC0) >> 4);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue