Quietly log writes to 0xc0003030. Written to only by bs1, and we don't seem to really care about it.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6377 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2010-11-11 01:12:01 +00:00
parent ce7c5099c7
commit 33421457d6
1 changed files with 6 additions and 3 deletions

View File

@ -40,7 +40,7 @@ enum
PI_FIFO_RESET = 0x18, // ??? - GXAbortFrame writes to it
PI_RESET_CODE = 0x24,
PI_FLIPPER_REV = 0x2C,
PI_UNKNOWN = 0x30 // BS1 writes 0x0245248A to it - prolly some bootstrap thing
PI_FLIPPER_UNK = 0x30 // BS1 writes 0x0245248A to it - prolly some bootstrap thing
};
@ -190,8 +190,11 @@ void Write32(const u32 _uValue, const u32 _iAddress)
break;
case PI_RESET_CODE:
NOTICE_LOG(PROCESSORINTERFACE, "Write %08x to PI_RESET_CODE", _uValue);
// (shuffle2) TODO :)
DEBUG_LOG(PROCESSORINTERFACE, "Write %08x to PI_RESET_CODE", _uValue);
break;
case PI_FLIPPER_UNK:
DEBUG_LOG(PROCESSORINTERFACE, "write %08x to unknown PI reg %08x", _uValue, _iAddress);
break;
default: