diff options
author | 2018-03-25 04:43:31 +1100 | |
---|---|---|
committer | 2018-03-25 04:43:31 +1100 | |
commit | e23a999d6aab0b245299a6db63267518a2dce7b4 (patch) | |
tree | f4766a6f5240169e8a8415ed1cc1103b52d651c1 | |
parent | 1c3684787c304e67c5b6f8ea36137403cd11e31e (diff) |
gah, always git add (nw)
-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 |