From 49fac75269ec69bd745c7e4c0e9b6ee8c18d0b7d Mon Sep 17 00:00:00 2001 From: hap Date: Sun, 24 Mar 2024 12:23:32 +0100 Subject: [PATCH] Systems promoted to working --------------------------- ZX-80 [Robbbert] --- src/mame/sinclair/zx.cpp | 4 ++-- src/mame/sinclair/zx_m.cpp | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mame/sinclair/zx.cpp b/src/mame/sinclair/zx.cpp index 11b72d36e1d..41f6ed1b068 100644 --- a/src/mame/sinclair/zx.cpp +++ b/src/mame/sinclair/zx.cpp @@ -39,7 +39,7 @@ - h4th and tree4th need their address maps worked out (eg, the stack is set to FB80) - lambda/pow3000 joystick, connected in parallel with the 4,R,F,7,U keys, but the directions are unknown. - Many games don't work. - - sets zx80, lambda. pc8300, pow3000 all fail to show text. + - sets lambda. pc8300, pow3000 all fail to show text. ****************************************************************************/ @@ -485,7 +485,7 @@ ROM_END /* Game Drivers */ // YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS -COMP( 1980, zx80, 0, 0, zx80, zx80, zx_state, init_zx, "Sinclair Research Ltd", "ZX-80", MACHINE_NOT_WORKING | MACHINE_NO_SOUND_HW ) +COMP( 1980, zx80, 0, 0, zx80, zx80, zx_state, init_zx, "Sinclair Research Ltd", "ZX-80", MACHINE_NO_SOUND_HW ) COMP( 1981, zx81, 0, 0, zx81, zx81, zx_state, init_zx, "Sinclair Research Ltd", "ZX-81", MACHINE_NO_SOUND_HW ) COMP( 1982, ts1000, zx81, 0, ts1000, zx81, zx_state, init_zx, "Timex Sinclair", "Timex Sinclair 1000", MACHINE_NO_SOUND_HW ) COMP( 1983, ts1500, zx81, 0, ts1500, zx81, zx_state, init_zx, "Timex Sinclair", "Timex Sinclair 1500", MACHINE_NO_SOUND_HW ) diff --git a/src/mame/sinclair/zx_m.cpp b/src/mame/sinclair/zx_m.cpp index 5d914f4c2dd..ae5ba62fa50 100644 --- a/src/mame/sinclair/zx_m.cpp +++ b/src/mame/sinclair/zx_m.cpp @@ -248,6 +248,8 @@ void zx_state::zx80_io_w(offs_t offset, uint8_t data) if (offs == 0xff) m_cassette->output(-1.0); + + drop_sync(); } void zx_state::zx81_io_w(offs_t offset, uint8_t data)