mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
af32a833b1
commit
915d2cc3a1
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue