diff options
| author | nakeee <nakeee@gmail.com> | 2009-08-10 09:20:12 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-08-10 09:20:12 +0000 |
| commit | 13a901146f3939d53ecc18791bd2174d60d8384f (patch) | |
| tree | 18c45151fea2ed6fb95b3eccc8628d9f1b33d485 /Source/Core/DSPCore/Src/DspIntArithmetic.cpp | |
| parent | 9f81006bda07b6268c84ff04b34b3347a58d2856 (diff) | |
DSPLLE:
- Extension fixes (Joined work with LM)
- Shuffle fix for my off by one error
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3958 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DspIntArithmetic.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DspIntArithmetic.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DSPCore/Src/DspIntArithmetic.cpp b/Source/Core/DSPCore/Src/DspIntArithmetic.cpp index fe6570986d..00c89bee35 100644 --- a/Source/Core/DSPCore/Src/DspIntArithmetic.cpp +++ b/Source/Core/DSPCore/Src/DspIntArithmetic.cpp @@ -459,9 +459,9 @@ void addax(const UDSPInstruction& opc) Update_SR_Register64(acc); } -// ADDR $acD, $(DSP_REG_AXL0+S) +// ADDR $acD.M, $axS.L // 0100 0ssd xxxx xxxx -// Adds register $(DSP_REG_AXL0+S) to accumulator $acD register. +// Adds register $axS.L to accumulator $acD register. void addr(const UDSPInstruction& opc) { u8 areg = (opc.hex >> 8) & 0x1; @@ -477,9 +477,9 @@ void addr(const UDSPInstruction& opc) Update_SR_Register64(acc); } -// SUBR $acD, $(DSP_REG_AXL0+S) +// SUBR $acD.M, $axS.L // 0101 0ssd xxxx xxxx -// Subtracts register $(DSP_REG_AXL0+S) from accumulator $acD register. +// Subtracts register $axS.L from accumulator $acD.M register. void subr(const UDSPInstruction& opc) { u8 areg = (opc.hex >> 8) & 0x1; |
