trunk/src/mame/drivers/vicdual.c
| r19714 | r19715 | |
| 99 | 99 | /* the main CPU is reset when a coin is inserted */ |
| 100 | 100 | void vicdual_state::coin_in() |
| 101 | 101 | { |
| 102 | | m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE); |
| 102 | m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE); |
| 103 | 103 | |
| 104 | | /* simulate the coin switch being closed for a while */ |
| 105 | | m_coinstate_timer->adjust(attotime::from_msec(50)); |
| 104 | /* simulate the coin switch being closed for a while */ |
| 105 | m_coinstate_timer->adjust(attotime::from_msec(70)); |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | INPUT_CHANGED_MEMBER(vicdual_state::coin_changed) |