trunk/src/mame/drivers/saturn.c
| r20609 | r20610 | |
| 625 | 625 | WRITE32_MEMBER(saturn_state::minit_w) |
| 626 | 626 | { |
| 627 | 627 | //logerror("cpu %s (PC=%08X) MINIT write = %08x\n", space.device().tag(), space.device().safe_pc(),data); |
| 628 | | // machine().scheduler().boost_interleave(m_minit_boost_timeslice, attotime::from_usec(m_minit_boost)); |
| 629 | | // machine().scheduler().trigger(1000); |
| 628 | machine().scheduler().boost_interleave(m_minit_boost_timeslice, attotime::from_usec(m_minit_boost)); |
| 629 | machine().scheduler().trigger(1000); |
| 630 | 630 | machine().scheduler().synchronize(); // force resync |
| 631 | 631 | sh2_set_frt_input(m_slave, PULSE_LINE); |
| 632 | 632 | } |
| r20609 | r20610 | |
| 634 | 634 | WRITE32_MEMBER(saturn_state::sinit_w) |
| 635 | 635 | { |
| 636 | 636 | //logerror("cpu %s (PC=%08X) SINIT write = %08x\n", space.device().tag(), space.device().safe_pc(),data); |
| 637 | | // machine().scheduler().boost_interleave(m_sinit_boost_timeslice, attotime::from_usec(m_sinit_boost)); |
| 637 | machine().scheduler().boost_interleave(m_sinit_boost_timeslice, attotime::from_usec(m_sinit_boost)); |
| 638 | 638 | machine().scheduler().synchronize(); // force resync |
| 639 | 639 | sh2_set_frt_input(m_maincpu, PULSE_LINE); |
| 640 | 640 | } |