summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DSPCore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCore.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DSPCore.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCore.cpp b/Source/Core/DSPCore/Src/DSPCore.cpp
index 42da6410f9..46d9ee1f38 100644
--- a/Source/Core/DSPCore/Src/DSPCore.cpp
+++ b/Source/Core/DSPCore/Src/DSPCore.cpp
@@ -241,19 +241,14 @@ int DSPCore_RunCycles(int cycles)
{
if (jit)
{
- // DSPCore_CheckExceptions();
- // DSPCore_CheckExternalInterrupt();
cyclesLeft = cycles;
-
CompiledCode pExecAddr = (CompiledCode)jit->enterDispatcher;
pExecAddr();
-
- // To use the C++ dispatcher, uncomment the line below and comment out the two lines above
- //jit->RunForCycles(cyclesLeft);
return cyclesLeft;
}
- while (cycles > 0) {
+ while (cycles > 0)
+ {
reswitch:
switch (core_state)
{