1
0
mirror of https://github.com/AppleWin/AppleWin.git synced 2025-01-12 12:30:31 +00:00

Fix for 6522.TIMER2 not setting CpuAdjustIrqCheck() correctly

This commit is contained in:
tomcw 2019-04-18 20:47:29 +01:00
parent ec74b9de6b
commit 6929ad98e3

@ -445,7 +445,7 @@ static void SY6522_Write(BYTE nDevice, BYTE nReg, BYTE nValue)
pMB->sy6522.TIMER2_COUNTER.w = pMB->sy6522.TIMER2_LATCH.w;
StartTimer2(pMB);
CpuAdjustIrqCheck(pMB->sy6522.TIMER1_LATCH.w); // Sync IRQ check timeout with 6522 counter underflow - GH#608
CpuAdjustIrqCheck(pMB->sy6522.TIMER2_LATCH.w); // Sync IRQ check timeout with 6522 counter underflow - GH#608
break;
case 0x0a: // SERIAL_SHIFT
break;