diff options
| author | nakeee <nakeee@gmail.com> | 2009-06-30 17:33:38 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-06-30 17:33:38 +0000 |
| commit | e6d78bcf3c284fd379ec67d10b0fdcf28460b06a (patch) | |
| tree | 2178b6deaf658e28acc1825dcb5f9ee1c0c2f795 /Source/Core/DSPCore/Src/DSPHWInterface.cpp | |
| parent | 22aa9128ee81f2340a0ca44b47b75047ce2cdcc6 (diff) | |
DSPLLE some more exception clean up, still couldn't get zelda to work:(
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3623 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPHWInterface.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPHWInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DSPCore/Src/DSPHWInterface.cpp b/Source/Core/DSPCore/Src/DSPHWInterface.cpp index 5ef3f5e071..93399d83c1 100644 --- a/Source/Core/DSPCore/Src/DSPHWInterface.cpp +++ b/Source/Core/DSPCore/Src/DSPHWInterface.cpp @@ -81,7 +81,7 @@ void gdsp_mbox_write_h(u8 mbx, u16 val) DEBUG_LOG(DSPLLE, " - DSP writes mail to mbx %i: 0x%08x (pc=0x%04x)", mbx, gdsp_mbox_peek(GDSP_MBOX_DSP), g_dsp.pc); } else { // mailbox - DSPCore_SetException(7); + // DSPCore_SetException(EXP_INT); } } @@ -101,7 +101,7 @@ void gdsp_mbox_write_l(u8 mbx, u16 val) DEBUG_LOG(DSPLLE, " - DSP writes mail to mbx %i: 0x%08x (pc=0x%04x)", mbx, gdsp_mbox_peek(GDSP_MBOX_DSP), g_dsp.pc); } else { // mailbox - DSPCore_SetException(7); + DSPCore_SetException(EXP_INT); } } @@ -152,7 +152,7 @@ void gdsp_ifx_write(u16 addr, u16 val) break; case 0xd3: // ZeldaUnk (accelerator WRITE) - ERROR_LOG(DSPLLE, "Write To ZeldaUnk pc=%04x (%04x)\n", g_dsp.pc, val); + DEBUG_LOG(DSPLLE, "Write To ZeldaUnk pc=%04x (%04x)\n", g_dsp.pc, val); dsp_write_aram_d3(val); break; |
