summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-05-25 03:21:53 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-05-25 03:21:53 +1000
commit24c084f70d8a7ac73498282d2b333f8b57adf595 (patch)
tree1d7bddac65b82d50b23150403136aa5540f0b16a
parenta7fab0ca81d2053802ee843c30b65653f1cfdf94 (diff)
MT 07335: comx35p,comx35n: cannot load a cassette
-rw-r--r--src/mame/drivers/comx35.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/drivers/comx35.cpp b/src/mame/drivers/comx35.cpp
index c6b10c873db..90a471f5193 100644
--- a/src/mame/drivers/comx35.cpp
+++ b/src/mame/drivers/comx35.cpp
@@ -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 )