diff options
author | 2017-05-15 12:19:48 +1000 | |
---|---|---|
committer | 2017-05-15 12:19:48 +1000 | |
commit | 3a62007453a5eb5b59a7d8d3645376e506efdc38 (patch) | |
tree | b0a922643302910595d392c480a1e6952c00bf56 /src/devices/machine/mos6530n.cpp | |
parent | d3aa5244c78fde8c3fff2f9264d01c994a976c90 (diff) |
outputs were supposed to be safe (nw)
Diffstat (limited to 'src/devices/machine/mos6530n.cpp')
-rw-r--r-- | src/devices/machine/mos6530n.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/mos6530n.cpp b/src/devices/machine/mos6530n.cpp index ed4cd47a1d5..08c14f5ef80 100644 --- a/src/devices/machine/mos6530n.cpp +++ b/src/devices/machine/mos6530n.cpp @@ -176,11 +176,11 @@ void mos6530_device_base::device_start() for (auto &cb : m_in_pa_cb) cb.resolve(); for (auto &cb : m_out_pa_cb) - cb.resolve(); + cb.resolve_safe(); for (auto &cb : m_in_pa_cb) cb.resolve(); for (auto &cb : m_out_pa_cb) - cb.resolve(); + cb.resolve_safe(); // allocate timer t_gen = timer_alloc(0); |