1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-01 11:49:58 +00:00

Fix final timer B test.

This commit is contained in:
Thomas Harte 2021-08-03 22:27:23 -04:00
parent b4ec9d70da
commit b9f78f5d33

View File

@ -242,7 +242,7 @@ struct MOS6526Storage {
pending |= chained_input ? TestInputNow : 0; pending |= chained_input ? TestInputNow : 0;
break; break;
case 0x60: // Count timer A transitions when CNT is low. case 0x60: // Count timer A transitions when CNT is low.
pending |= chained_input && cnt_edge ? TestInputNow : 0; pending |= chained_input && cnt_state ? TestInputNow : 0;
break; break;
} }
} else { } else {