From fb13dcf7465c4877655bf08c444897d725cbd2ec Mon Sep 17 00:00:00 2001 From: Robbbert Date: Sun, 8 Sep 2019 22:52:42 +1000 Subject: poly88: fixed cassette polyphase mode --- src/mame/drivers/poly88.cpp | 1 - src/mame/machine/poly88.cpp | 2 +- 2 files changed, 1 insertion(+), 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; } -- cgit v1.2.3