MT 07353 alphatro, fc100: hangs when save to cassette

This commit is contained in:
Robbbert 2019-06-15 00:44:52 +10:00
parent 56756e7a75
commit 22006435b8
2 changed files with 3 additions and 1 deletions

View File

@ -627,6 +627,7 @@ void alphatro_state::machine_reset()
m_cassold = 0;
m_fdc_irq = 0;
m_usart->write_rxd(0);
m_usart->write_cts(0);
m_beep->set_state(0);
}
@ -741,7 +742,7 @@ MACHINE_CONFIG_START(alphatro_state::alphatro)
/* sound hardware */
SPEAKER(config, "mono").front_center();
BEEP(config, "beeper", 16_MHz_XTAL / 4 / 13 / 128).add_route(ALL_OUTPUTS, "mono", 1.00); // nominally 2.4 kHz
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
/* Devices */
UPD765A(config, m_fdc, 16_MHz_XTAL / 2, true, true); // clocked through SED-9420C

View File

@ -486,6 +486,7 @@ void fc100_state::machine_reset()
m_key_pressed = 0;
membank("bankr")->set_entry(0);
membank("bankw")->set_entry(0);
m_uart->write_cts(0);
}
WRITE8_MEMBER( fc100_state::port60_w )