diff options
-rw-r--r-- | src/devices/video/dm9368.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/video/dm9368.cpp b/src/devices/video/dm9368.cpp index 3585e039843..4702430403b 100644 --- a/src/devices/video/dm9368.cpp +++ b/src/devices/video/dm9368.cpp @@ -57,22 +57,12 @@ void dm9368_device::a_w(u8 data) else LOG("DM9368 Output Data: %u = %02x\n", a, value); - m_update_cb(0, value); + m_update_cb(0, value, 0x7f); if (rbo != m_rbo) m_rbo_cb(m_rbo = rbo); } -WRITE_LINE_MEMBER( dm9368_device::rbi_w ) -{ - if (state != m_rbi) - { - m_rbi = state; - update(); - } -} - - void dm9368_device::device_resolve_objects() { // resolve callbacks |