From e72c7db45a368a265ecf904ad889e535e9e7e295 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 7 Sep 2022 09:34:44 -0400 Subject: m50734: device_reset fix --- src/devices/cpu/m6502/m50734.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/devices/cpu/m6502/m50734.cpp b/src/devices/cpu/m6502/m50734.cpp index 9b56903fba9..46e03a421b8 100644 --- a/src/devices/cpu/m6502/m50734.cpp +++ b/src/devices/cpu/m6502/m50734.cpp @@ -62,6 +62,8 @@ void m50734_device::device_start() void m50734_device::device_reset() { + m740_device::device_reset(); + std::fill(std::begin(m_port_direction), std::end(m_port_direction), 0x00); for (int n = 0; n < 4; n++) m_port_out_cb[n](m_port_3state[n]); -- cgit v1.2.3