mirror of
https://github.com/holub/mame
synced 2025-05-13 17:38:21 +03:00
Fixed regression with Shienryu
This commit is contained in:
parent
9e714747a7
commit
a7dbfe5d91
@ -315,6 +315,8 @@ static TIMER_CALLBACK( stv_smpc_intback )
|
|||||||
saturn_state *state = machine.driver_data<saturn_state>();
|
saturn_state *state = machine.driver_data<saturn_state>();
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
// printf("%02x %02x %02x\n",state->m_smpc.intback_buf[0],state->m_smpc.intback_buf[1],state->m_smpc.intback_buf[2]);
|
||||||
|
|
||||||
if(state->m_smpc.intback_buf[0] != 0)
|
if(state->m_smpc.intback_buf[0] != 0)
|
||||||
{
|
{
|
||||||
state->m_smpc.OREG[0] = (0x80) | ((state->m_NMI_reset & 1) << 6);
|
state->m_smpc.OREG[0] = (0x80) | ((state->m_NMI_reset & 1) << 6);
|
||||||
@ -365,6 +367,12 @@ static TIMER_CALLBACK( stv_smpc_intback )
|
|||||||
state->m_smpc.OREG[31] = 0x10;
|
state->m_smpc.OREG[31] = 0x10;
|
||||||
machine.scheduler().timer_set(attotime::from_usec(0), FUNC(stv_intback_peripheral),0);
|
machine.scheduler().timer_set(attotime::from_usec(0), FUNC(stv_intback_peripheral),0);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Shienryu calls this, it would be plainly illegal on Saturn, I'll just return the command and clear the hs flag for now. */
|
||||||
|
state->m_smpc.OREG[31] = 0x10;
|
||||||
|
state->m_smpc.SF = 0x00;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user