MT 07335: comx35p,comx35n: cannot load a cassette

This commit is contained in:
Robbbert 2019-05-25 03:21:53 +10:00
parent a7fab0ca81
commit 24c084f70d

View File

@ -9,6 +9,11 @@
- serial printer
- thermal printer
Cassette: PSAVE works, and the result can be loaded into Emma02 emulator.
PLOAD works, but it may be necessary to unplug all slots to get
a reliable load. This is the same as real hardware.
*/
#include "emu.h"
@ -460,7 +465,7 @@ READ_LINE_MEMBER( comx35_state::ef2_r )
READ_LINE_MEMBER( comx35_state::ef4_r )
{
return m_exp->ef4_r(); // | (m_cassette->input() > 0.0f);
return m_exp->ef4_r() | (m_cassette->input() > 0.0f);
}
WRITE_LINE_MEMBER( comx35_state::q_w )