docs/DSP: A failed RETcc only inceases PC by 1, not 2

This is because RETcc is a single-word instruction.
This commit is contained in:
Pokechu22 2021-08-16 00:03:46 -07:00
parent 1b84721b7f
commit 5bf59f3ce4

View file

@ -3689,7 +3689,7 @@ A ``-'' indicates that the flag retains its previous value, a ``0'' indicates th
IF (cc) IF (cc)
POP_STACK($st0) POP_STACK($st0)
ELSE ELSE
$pc += 2 $pc++
ENDIF ENDIF
\end{DSPOpcodeOperation} \end{DSPOpcodeOperation}