Added Intel Premiere/PCI (Batman's Revenge) and Advanced/EV (Endeavor) motherboards.

Added emulation of i430LX and i430FX chipsets.
Added support for PCI configuration type 2, used by i430LX.
Added AT disable keyboard command, and fixed enable keyboard command.
Added emulation of Intel 28F001BXT flash ROM, used by Advanced/EV.
Fixed a bug in REP when using multiple 66/67 prefixes.
This commit is contained in:
TomW 2014-11-23 20:27:41 +00:00
commit 84ac04d2df
24 changed files with 835 additions and 137 deletions

View file

@ -1,4 +1,4 @@
void pci_init();
void pci_init(int type, int min_card, int max_card);
void pci_add_specific(int card, uint8_t (*read)(int func, int addr, void *priv), void (*write)(int func, int addr, uint8_t val, void *priv), void *priv);
void pci_add(uint8_t (*read)(int func, int addr, void *priv), void (*write)(int func, int addr, uint8_t val, void *priv), void *priv);
@ -6,3 +6,6 @@ void pci_add(uint8_t (*read)(int func, int addr, void *priv), void (*write)(int
#define PCI_COMMAND_IO 0x01
#define PCI_COMMAND_MEM 0x02
#define PCI_CONFIG_TYPE_1 1
#define PCI_CONFIG_TYPE_2 2