From: Toni Wilen Date: Fri, 2 Aug 2024 18:04:18 +0000 (+0300) Subject: Fix Prometheus Firestorm interrupt bit X-Git-Tag: 5310~28 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=40760e59e992a527a27cce1056ec0805a7e727c4;p=francis%2Fwinuae.git Fix Prometheus Firestorm interrupt bit --- diff --git a/pci.cpp b/pci.cpp index 39b52b01..1d689faf 100644 --- a/pci.cpp +++ b/pci.cpp @@ -1923,7 +1923,7 @@ static int prometheusfs_get_index(uaecptr addr, bool w, uae_u32 *vp) } return -1; } - *vp = (pcib->irq ? (1 << 29) : 0) | (pcib->intena ? (1 << 30) : 0) | (pcib->reset ? (1 << 31) : 0); + *vp = (pcib->irq ? 0 : (1 << 29)) | (pcib->intena ? (1 << 30) : 0) | (pcib->reset ? (1 << 31) : 0); } return -1; }