mirror of
https://github.com/holub/mame
synced 2025-05-21 13:18:56 +03:00
Duh
This commit is contained in:
parent
b20dcee523
commit
8eee0dd548
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user