mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[NTVDM]
Fix an EOI condition in the BIOS IRQ handler. svn path=/branches/ntvdm/; revision=60801
This commit is contained in:
parent
da33c5532e
commit
b7ac8cf58e
1 changed files with 1 additions and 1 deletions
|
@ -1170,7 +1170,7 @@ VOID BiosHandleIrq(BYTE IrqNumber, LPWORD Stack)
|
|||
}
|
||||
|
||||
/* Send End-of-Interrupt to the PIC */
|
||||
if (IrqNumber > 8) PicWriteCommand(PIC_SLAVE_CMD, PIC_OCW2_EOI);
|
||||
if (IrqNumber >= 8) PicWriteCommand(PIC_SLAVE_CMD, PIC_OCW2_EOI);
|
||||
PicWriteCommand(PIC_MASTER_CMD, PIC_OCW2_EOI);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue