From 8eee0dd548540690a7ff2272865c87fd82bb9fbf Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Tue, 12 Feb 2013 01:46:36 +0000 Subject: [PATCH] Duh --- src/mame/drivers/saturn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/saturn.c b/src/mame/drivers/saturn.c index 7666ac34229..bf2feefe2e4 100644 --- a/src/mame/drivers/saturn.c +++ b/src/mame/drivers/saturn.c @@ -303,8 +303,8 @@ READ32_MEMBER(saturn_state::saturn_scu_r) case 0xa4/4: if(LOG_SCU && !space.debugger_access()) logerror("(PC=%08x) IRQ status reg read MASK=%08x IST=%08x | ISM=%08x\n",space.device().safe_pc(),mem_mask,m_scu.ist,m_scu.ism); /* TODO: Bug! trips an HW fault. Basically, it tries to read the IST bit 1 with that irq enabled. */ -// res = m_scu.ist | ~m_scu.ism; - res = m_scu.ist; + res = m_scu.ist | ~m_scu.ism; +// res = m_scu.ist; break; case 0xc8/4: if(LOG_SCU && !space.debugger_access()) logerror("(PC=%08x) SCU version reg read\n",space.device().safe_pc());