Fixed SMM, overhauled the emulation of the VIA northbridges, and added the Via Apollo VP3.

This commit is contained in:
OBattler
2020-04-01 08:59:29 +02:00
parent 2c8bcea38c
commit b8b198a56a
37 changed files with 1915 additions and 5024 deletions

View File

@@ -197,7 +197,6 @@ w83787f_write(uint16_t port, uint8_t val, void *priv)
w83787f_t *dev = (w83787f_t *) priv;
uint8_t valxor = 0;
uint8_t max = 0x15;
pclog("W83787F: Write %02X to %04X\n", val, port);
if (port == 0x250) {
if (val == dev->key)
@@ -312,8 +311,6 @@ w83787f_read(uint16_t port, void *priv)
}
}
pclog("W83787F: Read %02X from %04X\n", ret, port);
return ret;
}