summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-08-17 20:56:03 -0700
committerPokechu22 <Pokechu022@gmail.com>2021-08-21 17:07:14 -0700
commit602163b623cdbba28f6a5dadfc4ff656fc820428 (patch)
treeed27f3fcd1008f93cf53082b7e75ae9c08a2ff13 /docs
parentc51c3394246a9d25ed95e186ab80d8c5d16d0234 (diff)
docs/DSP: Fix typo with MULCMVZ and MULCMV
Diffstat (limited to 'docs')
-rw-r--r--docs/DSP/GameCube_DSP_Users_Manual/GameCube_DSP_Users_Manual.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/DSP/GameCube_DSP_Users_Manual/GameCube_DSP_Users_Manual.tex b/docs/DSP/GameCube_DSP_Users_Manual/GameCube_DSP_Users_Manual.tex
index 28a05b9e27..85530f543b 100644
--- a/docs/DSP/GameCube_DSP_Users_Manual/GameCube_DSP_Users_Manual.tex
+++ b/docs/DSP/GameCube_DSP_Users_Manual/GameCube_DSP_Users_Manual.tex
@@ -3279,14 +3279,14 @@ A ``-'' indicates that the flag retains its previous value, a ``0'' indicates th
\end{DSPOpcodeFormat}
\begin{DSPOpcodeDescription}
- \item Multiply mid part of accumulator register \Register{\$acS.m} by high part \Register{\$axS.h} of
- secondary accumulator \Register{\$axS} (treat them both as signed).
+ \item Multiply mid part of accumulator register \Register{\$acS.m} by high part \Register{\$axT.h} of
+ secondary accumulator \Register{\$axT} (treat them both as signed).
Move product register before multiplication to accumulator \Register{\$acR}.
\end{DSPOpcodeDescription}
\begin{DSPOpcodeOperation}
temp = $prod
- $prod = $acS.m * $axS.h
+ $prod = $acS.m * $axT.h
$acR = temp
$pc++
\end{DSPOpcodeOperation}
@@ -3308,15 +3308,15 @@ A ``-'' indicates that the flag retains its previous value, a ``0'' indicates th
\end{DSPOpcodeFormat}
\begin{DSPOpcodeDescription}
- \item Multiply mid part of accumulator register \Register{\$acS.m} by high part \Register{\$axS.h} of
- secondary accumulator \Register{\$axS} (treat them both as signed).
+ \item Multiply mid part of accumulator register \Register{\$acS.m} by high part \Register{\$aTS.h} of
+ secondary accumulator \Register{\$axT} (treat them both as signed).
Move product register before multiplication to accumulator \Register{\$acR}.
Set low part of accumulator \Register{\$acR.l} to zero.
\end{DSPOpcodeDescription}
\begin{DSPOpcodeOperation}
temp = $prod
- $prod = $acS.m * $axS.h
+ $prod = $acS.m * $axT.h
$acR.hm = temp.hm
$acR.l = 0
$pc++