PASPlus fix for PoP1

Okay, turns out bit 5 (for the board revision) is for all PAS2-based cards, which includes both Plus and 16.
This should fix the PCM IRQ on PoP1 and board detection on Plus DOS drivers.
This commit is contained in:
TC1995
2024-04-06 02:44:50 +02:00
parent b674619894
commit bc6aacec71

View File

@@ -309,7 +309,7 @@ pas16_in(uint16_t port, void *priv)
ret = pas16->audiofilt;
break;
case 0x0803:
ret = pas16->irq_ena | (pas16->type ? 0x20 : 0x00);
ret = pas16->irq_ena | 0x20;
pas16_log("IRQ Mask read=%02x.\n", ret);
break;