Signal the next IRQ on EOI.


svn path=/trunk/; revision=65011
This commit is contained in:
Aleksandar Andrejevic 2014-10-26 14:57:44 +00:00
parent 439fa16903
commit 95928b831b

View file

@ -85,6 +85,12 @@ static VOID PicWriteCommand(BYTE Port, BYTE Value)
/* Otherwise, clear all of them */
Pic->InServiceRegister = 0;
}
if (MasterPic.IntRequestRegister || SlavePic.IntRequestRegister)
{
/* Signal the next IRQ */
EmulatorInterruptSignal();
}
}
}