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

@ -254,6 +254,11 @@ void keyboard_at_write(uint16_t port, uint8_t val, void *priv)
case 0xf4: /*Enable keyboard*/
keyboard_scan = 1;
keyboard_at_adddata_keyboard(0xfa);
break;
case 0xf5: /*Disable keyboard*/
keyboard_scan = 0;
keyboard_at_adddata_keyboard(0xfa);
break;
case 0xff: /*Reset*/