diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/machine/mos6530n.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/emu/machine/mos6530n.c b/src/emu/machine/mos6530n.c index 66ddf144500..52f9266d595 100644 --- a/src/emu/machine/mos6530n.c +++ b/src/emu/machine/mos6530n.c @@ -259,7 +259,14 @@ void mos6530_base_t::device_reset() update_irq(); edge_detect(); - live_abort(); + m_shift = 1024; + + if (cur_live.state != IDLE) { + live_abort(); + } + + live_start(); + live_run(); } |