X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=libpcsxcore%2Fpsxhw.h;h=1d1822f8f2828badb192e4f5cba422259ff523c6;hp=cd4e928c58b4b4e54f174a1819b0fe6ac3c2f99e;hb=1f77c86322bf6567909da192fdbf6c28c0596a13;hpb=ad418c19cd4ca9a80820593609b786c6993b2eda diff --git a/libpcsxcore/psxhw.h b/libpcsxcore/psxhw.h index cd4e928c..1d1822f8 100644 --- a/libpcsxcore/psxhw.h +++ b/libpcsxcore/psxhw.h @@ -57,11 +57,21 @@ extern "C" { #define HW_DMA_PCR (psxHu32ref(0x10f0)) #define HW_DMA_ICR (psxHu32ref(0x10f4)) -#define DMA_INTERRUPT(n) \ - if (SWAPu32(HW_DMA_ICR) & (1 << (16 + n))) { \ - HW_DMA_ICR |= SWAP32(1 << (24 + n)); \ - psxHu32ref(0x1070) |= SWAP32(8); \ - } +#define HW_DMA_ICR_BUS_ERROR (1<<15) +#define HW_DMA_ICR_GLOBAL_ENABLE (1<<23) +#define HW_DMA_ICR_IRQ_SENT (1<<31) + +#define DMA_INTERRUPT(n) { \ + u32 icr = SWAPu32(HW_DMA_ICR); \ + if (icr & (1 << (16 + n))) { \ + icr |= 1 << (24 + n); \ + if (icr & HW_DMA_ICR_GLOBAL_ENABLE && !(icr & HW_DMA_ICR_IRQ_SENT)) { \ + psxHu32ref(0x1070) |= SWAP32(8); \ + icr |= HW_DMA_ICR_IRQ_SENT; \ + } \ + HW_DMA_ICR = SWAP32(icr); \ + } \ +} void psxHwReset(); u8 psxHwRead8(u32 add);