docs/DSP: Fix operation for LSR/ASR

This commit is contained in:
Pokechu22 2021-08-13 14:00:27 -07:00
parent 2eb791d5e1
commit 332bb6fd55

View file

@ -1402,7 +1402,9 @@ There are two pairs of conditions that work similarly: \texttt{EQ}/\texttt{NE} a
\end{DSPOpcodeDescription}
\begin{DSPOpcodeOperation}
$acR >>= I
IF I != 0
$acR >>= (64 - I)
ENDIF
FLAGS($acD)
$pc++
\end{DSPOpcodeOperation}
@ -2459,7 +2461,9 @@ There are two pairs of conditions that work similarly: \texttt{EQ}/\texttt{NE} a
\end{DSPOpcodeDescription}
\begin{DSPOpcodeOperation}
$acR >>= I
IF I != 0
$acR >>= (64 - I)
ENDIF
FLAGS($acD)
$pc++
\end{DSPOpcodeOperation}