summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DspIntBranch.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-07-02 21:20:47 +0000
committernakeee <nakeee@gmail.com>2009-07-02 21:20:47 +0000
commitac9510187ceb1ecb6dab1042d16a1ead1b27edef (patch)
tree017b87da9708be1ce98c267ec44c44d5877dbd8a /Source/Core/DSPCore/Src/DspIntBranch.cpp
parent20db80bf6d59b8fc86c31af0122647fbf2ef35b5 (diff)
LLE Recommit some clean up from previous commits
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3652 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DspIntBranch.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DspIntBranch.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/DSPCore/Src/DspIntBranch.cpp b/Source/Core/DSPCore/Src/DspIntBranch.cpp
index b843526906..f37cc71ba0 100644
--- a/Source/Core/DSPCore/Src/DspIntBranch.cpp
+++ b/Source/Core/DSPCore/Src/DspIntBranch.cpp
@@ -48,8 +48,8 @@ void call(const UDSPInstruction& opc)
// Generic callr implementation
// CALLRcc $R
// 0001 0111 rrr1 cccc
-// Call functionif condition cc has been met.Push program counter of
-// instruction following "call" tocall stack $st0. Set program counter to
+// Call function if condition cc has been met. Push program counter of
+// instruction following "call" to call stack $st0. Set program counter to
// register $R.
void callr(const UDSPInstruction& opc)
{
@@ -121,7 +121,6 @@ void ret(const UDSPInstruction& opc)
// Return from exception. Pops stored status register $sr from data stack
// $st1 and program counter PC from call stack $st0 and sets $pc to this
// location.
-// FIXME: is it also conditional? unknown opcodes 0x02fx
void rti(const UDSPInstruction& opc)
{
g_dsp.r[DSP_REG_SR] = dsp_reg_load_stack(DSP_STACK_D);