diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-06-28 10:00:25 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-06-28 10:00:25 +0000 |
| commit | 895b02f4102885d8ab8c4419d76dfef7f4c21703 (patch) | |
| tree | ea834590ba48451eeef493f22e4eddb57892e02d /Source/Core/DSPCore/Src/DSPCore.cpp | |
| parent | 7ea2bc5da9681bca748f783f433ccaf689f7b604 (diff) | |
DSP: Add txt file with luigi ucode comments (very basic). Rename some stuff. Remove function pointer in g_dsp structure, replace with a "Host" function call. Fix a problem where symbols weren't loaded into DSP debugger.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3563 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPCore.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCore.cpp b/Source/Core/DSPCore/Src/DSPCore.cpp index 692a202109..d3cdf76159 100644 --- a/Source/Core/DSPCore/Src/DSPCore.cpp +++ b/Source/Core/DSPCore/Src/DSPCore.cpp @@ -30,7 +30,7 @@ #include "gdsp_interface.h"
#include "gdsp_registers.h"
-#include "gdsp_opcodes_helper.h"
+#include "DSPIntUtil.h"
SDSP g_dsp;
@@ -156,8 +156,7 @@ void DSPCore_CheckExternalInterrupt() // level 7 is the interrupt exception
DSPCore_SetException(7);
- // Uh, confusing. Can this really be right?
- g_dsp.cr &= ~0x0002;
+ g_dsp.cr &= ~CR_EXTERNAL_INT;
}
}
}
|
