From 33421457d68ea90377dd861fc1e23d11de499c64 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Thu, 11 Nov 2010 01:12:01 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/HW/ProcessorInterface.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/Src/HW/ProcessorInterface.cpp b/Source/Core/Core/Src/HW/ProcessorInterface.cpp index e0ffc2997a..d3dc1df779 100644 --- a/Source/Core/Core/Src/HW/ProcessorInterface.cpp +++ b/Source/Core/Core/Src/HW/ProcessorInterface.cpp @@ -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: