diff options
author | 2013-02-15 23:31:30 +0000 | |
---|---|---|
committer | 2013-02-15 23:31:30 +0000 | |
commit | 2c251c8a69fb28c08cdd5c211839d4e48520c646 (patch) | |
tree | c8f0cad6ace5db821b6a630db37a7c8aa081696d /src/emu/machine/smpc.c | |
parent | 89ddd7a69ee0340dc9ff3908498defad79c5b0d8 (diff) |
Fixed Out Run booting, it triggers the RESET opcode and the only good theory so far is that the SMPC can read the RESET/HALT states on it in some way.
Diffstat (limited to 'src/emu/machine/smpc.c')
-rw-r--r-- | src/emu/machine/smpc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/machine/smpc.c b/src/emu/machine/smpc.c index d89331413d5..979a0b00298 100644 --- a/src/emu/machine/smpc.c +++ b/src/emu/machine/smpc.c @@ -661,6 +661,11 @@ static TIMER_CALLBACK( smpc_nmi_set ) } +TIMER_CALLBACK_MEMBER( saturn_state::smpc_audio_reset_line_pulse ) +{ + m_audiocpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE); +} + /******************************************** * * COMREG sub-routine |