docs/DSP: MADDC operates on acS.m, not acS.l

This matches the prose and Dolphin's implementation.
This commit is contained in:
Pokechu22 2021-07-13 15:15:21 -07:00
parent 0796fada17
commit be753e5a45
1 changed files with 2 additions and 2 deletions

View File

@ -2826,7 +2826,7 @@ A ``-'' indicates that the flag retains its previous value, a ``0'' indicates th
\end{DSPOpcodeBytefield} \end{DSPOpcodeBytefield}
\begin{DSPOpcodeFormat} \begin{DSPOpcodeFormat}
MADDC $acS.l, $axT.h MADDC $acS.m, $axT.h
\end{DSPOpcodeFormat} \end{DSPOpcodeFormat}
\begin{DSPOpcodeDescription} \begin{DSPOpcodeDescription}
@ -2835,7 +2835,7 @@ A ``-'' indicates that the flag retains its previous value, a ``0'' indicates th
\end{DSPOpcodeDescription} \end{DSPOpcodeDescription}
\begin{DSPOpcodeOperation} \begin{DSPOpcodeOperation}
$prod += $acS.l * $axT.h $prod += $acS.m * $axT.h
$pc++ $pc++
\end{DSPOpcodeOperation} \end{DSPOpcodeOperation}