mc68hc11: Fix bug causing DES to decrement IX rather than the stack pointer

This commit is contained in:
AJR 2021-04-16 11:20:34 -04:00
parent 857c00c287
commit 9fbb36769f

View File

@ -1952,7 +1952,7 @@ void HC11OP(dec_indy)()
/* DES 0x34 */
void HC11OP(des)()
{
m_ix--;
m_sp--;
CYCLES(3);
}