Let's keep the warning log in :p

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4888 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-08-29 18:57:58 +00:00
parent af32a833b1
commit 915d2cc3a1
1 changed files with 2 additions and 0 deletions

View File

@ -246,6 +246,7 @@ void __fastcall _hwWrite8(u32 mem, u8 value)
case INTC_STAT:
case INTC_MASK:
case DMAC_FAKESTAT:
DevCon.Warning ( "8bit write mem = %x value %x", mem, value );
_hwWrite32<page>(mem & ~3, (u32)value << (mem & 3) * 8);
return;
}
@ -274,6 +275,7 @@ void __fastcall _hwWrite16(u32 mem, u16 value)
case INTC_STAT:
case INTC_MASK:
case DMAC_FAKESTAT:
DevCon.Warning ( "16bit write mem = %x value %x", mem, value );
_hwWrite32<page>(mem & ~3, (u32)value << (mem & 3) * 8);
return;
}