1
0
mirror of https://github.com/simh/simh.git synced 2026-02-27 09:09:46 +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 */