mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
MT 07335: comx35p,comx35n: cannot load a cassette
This commit is contained in:
parent
a7fab0ca81
commit
24c084f70d
@ -9,6 +9,11 @@
|
|||||||
- serial printer
|
- serial printer
|
||||||
- thermal 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"
|
#include "emu.h"
|
||||||
@ -460,7 +465,7 @@ READ_LINE_MEMBER( comx35_state::ef2_r )
|
|||||||
|
|
||||||
READ_LINE_MEMBER( comx35_state::ef4_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 )
|
WRITE_LINE_MEMBER( comx35_state::q_w )
|
||||||
|
Loading…
Reference in New Issue
Block a user