summaryrefslogtreecommitdiffstats
path: root/src/mame
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2013-01-30 02:17:07 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2013-01-30 02:17:07 +0000
commit4a0f79932b6d19fe39073dd42cc0b91b7e2c8a5a (patch)
tree2012948c52a9d5ff2ebe6cb67344e672bc43f21b /src/mame
parentf21076190212f2677f41f243272ce12f6cbe58b6 (diff)
Why not having both things enabled in minit/sinit? Should fix some comms regressions
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/saturn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/saturn.c b/src/mame/drivers/saturn.c
index 9253cb4259a..59d0271f767 100644
--- a/src/mame/drivers/saturn.c
+++ b/src/mame/drivers/saturn.c
@@ -625,8 +625,8 @@ READ16_MEMBER(saturn_state::saturn_soundram_r)
WRITE32_MEMBER(saturn_state::minit_w)
{
//logerror("cpu %s (PC=%08X) MINIT write = %08x\n", space.device().tag(), space.device().safe_pc(),data);
-// machine().scheduler().boost_interleave(m_minit_boost_timeslice, attotime::from_usec(m_minit_boost));
-// machine().scheduler().trigger(1000);
+ machine().scheduler().boost_interleave(m_minit_boost_timeslice, attotime::from_usec(m_minit_boost));
+ machine().scheduler().trigger(1000);
machine().scheduler().synchronize(); // force resync
sh2_set_frt_input(m_slave, PULSE_LINE);
}
@@ -634,7 +634,7 @@ WRITE32_MEMBER(saturn_state::minit_w)
WRITE32_MEMBER(saturn_state::sinit_w)
{
//logerror("cpu %s (PC=%08X) SINIT write = %08x\n", space.device().tag(), space.device().safe_pc(),data);
-// machine().scheduler().boost_interleave(m_sinit_boost_timeslice, attotime::from_usec(m_sinit_boost));
+ machine().scheduler().boost_interleave(m_sinit_boost_timeslice, attotime::from_usec(m_sinit_boost));
machine().scheduler().synchronize(); // force resync
sh2_set_frt_input(m_maincpu, PULSE_LINE);
}