docs/DSP: fix $prod references

Apart from improving readability, this also fixes a hex-vs-decimal mismatch.
This commit is contained in:
Tillmann Karras 2020-05-02 15:08:31 +01:00
parent 74b2410d7e
commit 7546bd6476

View File

@ -1455,10 +1455,10 @@ There are two pairs of conditions that work similar: \texttt{EQ}/\texttt{NE} and
\begin{DSPOpcodeNote}
\item Actually product register gets cleared by setting registers with following values:
\begin{lstlisting}[basicstyle=\ttfamily]
$14 = 0x0000
$15 = 0xfff0
$16 = 0x00ff
$17 = 0x0010
$prod.l = 0x0000
$prod.m1 = 0xfff0
$prod.h = 0x00ff
$prod.m2 = 0x0010
\end{lstlisting}
\end{DSPOpcodeNote}
\end{DSPOpcode}