Fixed an if block in the Intel SIO code.

This commit is contained in:
OBattler
2020-01-14 22:33:13 +01:00
parent cbcb53f7ee
commit 2fcf79ec8d

View File

@@ -123,7 +123,7 @@ sio_write(int func, int addr, uint8_t val, void *priv)
if (func > 0)
return;
if (addr >= 0x0f && addr < 0x4c)
if (((addr >= 0x0f) && (addr < 0x4c)) && (addr != 0x40))
return;
/* The IB (original) variant of the SIO has no PCI IRQ steering. */