Author: aandrejevic
Date: Sun Oct 26 14:57:44 2014
New Revision: 65011
URL:
http://svn.reactos.org/svn/reactos?rev=65011&view=rev
Log:
[NTVDM]
Signal the next IRQ on EOI.
Modified:
trunk/reactos/subsystems/ntvdm/hardware/pic.c
Modified: trunk/reactos/subsystems/ntvdm/hardware/pic.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/hardware/…
==============================================================================
--- trunk/reactos/subsystems/ntvdm/hardware/pic.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/ntvdm/hardware/pic.c [iso-8859-1] Sun Oct 26 14:57:44 2014
@@ -84,6 +84,12 @@
{
/* Otherwise, clear all of them */
Pic->InServiceRegister = 0;
+ }
+
+ if (MasterPic.IntRequestRegister || SlavePic.IntRequestRegister)
+ {
+ /* Signal the next IRQ */
+ EmulatorInterruptSignal();
}
}
}