summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-09-08 22:52:42 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-09-08 22:52:42 +1000
commitfb13dcf7465c4877655bf08c444897d725cbd2ec (patch)
tree4bcca9a4096dd54828f724df23e26f41fa0a7b9b
parent4e63fc410b735d355f439a79d9d4f3184f6de34e (diff)
poly88: fixed cassette polyphase mode
-rw-r--r--src/mame/drivers/poly88.cpp1
-rw-r--r--src/mame/machine/poly88.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/poly88.cpp b/src/mame/drivers/poly88.cpp
index ac9fb35b81d..d1323650725 100644
--- a/src/mame/drivers/poly88.cpp
+++ b/src/mame/drivers/poly88.cpp
@@ -14,7 +14,6 @@ BASIC. PolyMorphic's "System 16" package shipped with 16K of RAM (as did
the 8813), though their earlier systems had only 8K or less.
ToDo:
-- Polyphase format not working because 8251 device doesn't support bisync.
- More accurate interrupt emulation.
- Single-step control.
- .CAS file format support (http://deramp.com/polymorphic-computers/emu88.html).
diff --git a/src/mame/machine/poly88.cpp b/src/mame/machine/poly88.cpp
index 82ab61f1c91..a2dea3c7229 100644
--- a/src/mame/machine/poly88.cpp
+++ b/src/mame/machine/poly88.cpp
@@ -82,7 +82,7 @@ TIMER_DEVICE_CALLBACK_MEMBER( poly88_state::kansas_r )
if (m_dtr)
{
m_cass_data[1] = m_cass_data[2] = m_cass_data[3] = 0;
- m_casspol = 1;
+ m_casspol = 0;
return;
}