mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
log more writes to exi mask rom, i honestly forget what i saw using this, but here it is...
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4404 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2cfbd4327f
commit
97b2f4c1ac
@ -268,6 +268,14 @@ void CEXIIPL::TransferByte(u8& _uByte)
|
||||
{
|
||||
DEBUG_LOG(EXPANSIONINTERFACE, "EXI IPL-DEV: UART");
|
||||
}
|
||||
else if ((m_uAddress & 0x7FFFFF00) == 0x20011300)
|
||||
{
|
||||
DEBUG_LOG(EXPANSIONINTERFACE, "EXI IPL-DEV: UART Barnacle");
|
||||
}
|
||||
else if ((m_uAddress & 0x7FFFFF00) == 0x20010300)
|
||||
{
|
||||
DEBUG_LOG(EXPANSIONINTERFACE, "EXI IPL-DEV: UART Other?");
|
||||
}
|
||||
else if (((m_uAddress & 0x7FFFFF00) == 0x21000000) ||
|
||||
((m_uAddress & 0x7FFFFF00) == 0x21000100) ||
|
||||
((m_uAddress & 0x7FFFFF00) == 0x21000800))
|
||||
@ -337,6 +345,15 @@ void CEXIIPL::TransferByte(u8& _uByte)
|
||||
else
|
||||
_uByte = 0x01; // dunno
|
||||
}
|
||||
else if ((m_uAddress & 0x7FFFFF00) == 0x20011300)
|
||||
{
|
||||
INFO_LOG(OSREPORT, "UART Barnacle %x", _uByte);
|
||||
}
|
||||
else if ((m_uAddress & 0x7FFFFF00) == 0x20010300)
|
||||
{
|
||||
INFO_LOG(OSREPORT, "UART? %x", _uByte);
|
||||
_uByte = 0xff;
|
||||
}
|
||||
else if (((m_uAddress & 0x7FFFFF00) == 0x21000000) ||
|
||||
((m_uAddress & 0x7FFFFF00) == 0x21000100) ||
|
||||
((m_uAddress & 0x7FFFFF00) == 0x21000800))
|
||||
|
Loading…
Reference in New Issue
Block a user