Added level-sensitive IRQs on PIIX and SiS497. Fixes hanging audio with AudioPCI on Windows 2000.

This commit is contained in:
SarahW 2018-03-24 15:29:10 +00:00
commit 6412d01deb
5 changed files with 53 additions and 4 deletions

View file

@ -4,6 +4,7 @@
#include "io.h"
#include "mem.h"
#include "pci.h"
#include "pic.h"
#include "sis496.h"
@ -137,6 +138,8 @@ void *sis496_init()
pci_set_card_routing(13, PCI_INTD);
pci_set_card_routing(11, PCI_INTC);
pic_init_elcrx();
return sis496;
}