mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
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}
|
\end{DSPOpcodeDescription}
|
||||||
|
|
||||||
\begin{DSPOpcodeOperation}
|
\begin{DSPOpcodeOperation}
|
||||||
$acR >>= I
|
IF I != 0
|
||||||
|
$acR >>= (64 - I)
|
||||||
|
ENDIF
|
||||||
FLAGS($acD)
|
FLAGS($acD)
|
||||||
$pc++
|
$pc++
|
||||||
\end{DSPOpcodeOperation}
|
\end{DSPOpcodeOperation}
|
||||||
@ -2459,7 +2461,9 @@ There are two pairs of conditions that work similarly: \texttt{EQ}/\texttt{NE} a
|
|||||||
\end{DSPOpcodeDescription}
|
\end{DSPOpcodeDescription}
|
||||||
|
|
||||||
\begin{DSPOpcodeOperation}
|
\begin{DSPOpcodeOperation}
|
||||||
$acR >>= I
|
IF I != 0
|
||||||
|
$acR >>= (64 - I)
|
||||||
|
ENDIF
|
||||||
FLAGS($acD)
|
FLAGS($acD)
|
||||||
$pc++
|
$pc++
|
||||||
\end{DSPOpcodeOperation}
|
\end{DSPOpcodeOperation}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user