some prepare / debugging of issue 408, can't work now
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2349 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
5c2694a629
commit
cfd2a12857
|
@ -216,7 +216,8 @@ void CEXIIPL::TransferByte(u8& _uByte)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_dbg_assert_(EXPANSIONINTERFACE, 0);
|
//_dbg_assert_(EXPANSIONINTERFACE, 0);
|
||||||
|
_dbg_assert_msg_(EXPANSIONINTERFACE, 0, "EXI IPL-DEV: illegal access address %08x", m_uAddress);
|
||||||
LOG(EXPANSIONINTERFACE, "EXI IPL-DEV: illegal address %08x", m_uAddress);
|
LOG(EXPANSIONINTERFACE, "EXI IPL-DEV: illegal address %08x", m_uAddress);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -275,6 +275,9 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
|
||||||
PanicAlert("DVDLowOpenPartition", Command);
|
PanicAlert("DVDLowOpenPartition", Command);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 0x8c:
|
||||||
|
//PanicAlert("DVDLowClosePartition");
|
||||||
|
break;
|
||||||
|
|
||||||
// DVDLowUnencryptedRead
|
// DVDLowUnencryptedRead
|
||||||
case 0x8d:
|
case 0x8d:
|
||||||
|
|
|
@ -74,6 +74,11 @@ public:
|
||||||
|
|
||||||
switch(Parameter)
|
switch(Parameter)
|
||||||
{
|
{
|
||||||
|
case IOCTL_STM_HOTRESET:
|
||||||
|
LOG(WII_IPC_SD, "%s - IOCtl: \n", GetDeviceName().c_str());
|
||||||
|
LOG(WII_IPC_SD, " IOCTL_STM_HOTRESET");
|
||||||
|
break;
|
||||||
|
|
||||||
case IOCTL_STM_VIDIMMING: // (Input: 20 bytes, Output: 20 bytes)
|
case IOCTL_STM_VIDIMMING: // (Input: 20 bytes, Output: 20 bytes)
|
||||||
LOG(WII_IPC_SD, "%s - IOCtl: \n", GetDeviceName().c_str());
|
LOG(WII_IPC_SD, "%s - IOCtl: \n", GetDeviceName().c_str());
|
||||||
LOG(WII_IPC_SD, " IOCTL_STM_VIDIMMING");
|
LOG(WII_IPC_SD, " IOCTL_STM_VIDIMMING");
|
||||||
|
|
Loading…
Reference in New Issue