diff options
author | 2022-09-07 09:34:44 -0400 | |
---|---|---|
committer | 2022-09-07 09:34:44 -0400 | |
commit | e72c7db45a368a265ecf904ad889e535e9e7e295 (patch) | |
tree | 6b38d90fcdd4428a39c2ee4281b60d24ca016856 | |
parent | a7be70a183ceee8ce3c79a6afec61ae7aef95fe1 (diff) |
m50734: device_reset fix
-rw-r--r-- | src/devices/cpu/m6502/m50734.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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]); |