1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-17 08:44:08 +00:00

Fixed typo in prior correction

This commit is contained in:
Mark Pizzolato 2012-03-23 15:57:26 -07:00
parent 7d07c49e3f
commit 8255ba9379

View File

@ -425,7 +425,7 @@ int32 sim_instr (void)
condevalZ(IX);
break;
case 0x09: /* DEX */
IX = (IX + 1) & ADDRMASK;
IX = (IX - 1) & ADDRMASK;
condevalZ(IX);
break;
case 0x0A: /* CLV */