diff options
| author | nakeee <nakeee@gmail.com> | 2009-07-15 15:12:42 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-07-15 15:12:42 +0000 |
| commit | 90f595bada0c51dd5379635bfd899c707589c7dd (patch) | |
| tree | 2c92aaeefd258fd5cbfc6be9b6113e83b20e3700 /Source/Core/DSPCore/Src/DSPHWInterface.cpp | |
| parent | 3bc8eb7eaf83445e04c318fcd4f53fd6da73bf66 (diff) | |
DSPLLE: added lsrnr (based on lordmark and luigi suggestions) Still somethings seems wrong as it didn't fix the zelda problem:(
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3800 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPHWInterface.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPHWInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DSPCore/Src/DSPHWInterface.cpp b/Source/Core/DSPCore/Src/DSPHWInterface.cpp index a4da019c24..e7a9b700ce 100644 --- a/Source/Core/DSPCore/Src/DSPHWInterface.cpp +++ b/Source/Core/DSPCore/Src/DSPHWInterface.cpp @@ -161,7 +161,7 @@ void gdsp_ifx_write(u16 addr, u16 val) break; case 0xd3: // ZeldaUnk (accelerator WRITE) - INFO_LOG(DSPLLE, "Write To ZeldaUnk pc=%04x (%04x)", g_dsp.pc, val); + NOTICE_LOG(DSPLLE, "Write To ZeldaUnk pc=%04x (%04x)", g_dsp.pc, val); dsp_write_aram_d3(val); break; @@ -215,7 +215,7 @@ u16 gdsp_ifx_read(u16 addr) return dsp_read_accelerator(); case 0xd3: - ERROR_LOG(DSPLLE, "DSP read aram D3"); + NOTICE_LOG(DSPLLE, "Read from ZeldaUnk pc=%04x", g_dsp.pc); return dsp_read_aram_d3(); default: |
