diff options
author | 2014-11-07 22:19:16 +0100 | |
---|---|---|
committer | 2014-11-07 22:19:16 +0100 | |
commit | 55d38c37533793f3559dff6a4bb933d4c548f8a4 (patch) | |
tree | 5f59f8deb5cfa7e8fca7aae7dc9ac0335be7a6d2 /src/emu/bus/dmv | |
parent | 98c4b826c31fd13201bf28310957e1c9cac993ab (diff) |
MM58167: implemented IRQs and counters write, this allow to pass the K803 diagnostic test. (nw)
dirtc: call clock_updated() after increasing the minutes counter. (nw)
Diffstat (limited to 'src/emu/bus/dmv')
-rw-r--r-- | src/emu/bus/dmv/k803.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/dmv/k803.c b/src/emu/bus/dmv/k803.c index 4e57aea8280..7f748cc4806 100644 --- a/src/emu/bus/dmv/k803.c +++ b/src/emu/bus/dmv/k803.c @@ -129,5 +129,5 @@ WRITE_LINE_MEMBER(dmv_k803_device::rtc_irq_w) void dmv_k803_device::update_int() { bool state = ((m_latch & 0x80) && m_rtc_int); - m_bus->m_out_irq_cb(state ? ASSERT_LINE : CLEAR_LINE); + m_bus->m_out_int_cb(state ? ASSERT_LINE : CLEAR_LINE); } |