docs/DSP: Fix operation for LSR/ASR
This commit is contained in:
parent
2eb791d5e1
commit
332bb6fd55
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue