summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/overdriv.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-04-27 20:14:53 +0900
committer cam900 <dbtlrchl@naver.com>2019-04-27 20:14:53 +0900
commit8807fdb79922ab2c1bc0b6447d172b8b0a6a1b4e (patch)
tree747910b8d0e3411c432fa0454405739766af129c /src/mame/drivers/overdriv.cpp
parent6f6a87dd452948473b11cb5fb36d1b87f03df2b2 (diff)
k053251.cpp : Updates
Simplify handlers, Reduce unnecessary handlers
Diffstat (limited to 'src/mame/drivers/overdriv.cpp')
-rw-r--r--src/mame/drivers/overdriv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/overdriv.cpp b/src/mame/drivers/overdriv.cpp
index 7f829d59bce..f97040fd9b0 100644
--- a/src/mame/drivers/overdriv.cpp
+++ b/src/mame/drivers/overdriv.cpp
@@ -170,7 +170,7 @@ void overdriv_state::overdriv_master_map(address_map &map)
map(0x180000, 0x180001).portr("PADDLE").nopw(); // writes 0 at POST and expect that motor busy flag is off, then checks if paddle is at center otherwise throws a "VOLUME ERROR".
map(0x1c0000, 0x1c001f).w(m_k051316_1, FUNC(k051316_device::ctrl_w)).umask16(0xff00);
map(0x1c8000, 0x1c801f).w(m_k051316_2, FUNC(k051316_device::ctrl_w)).umask16(0xff00);
- map(0x1d0000, 0x1d001f).w(m_k053251, FUNC(k053251_device::msb_w));
+ map(0x1d0000, 0x1d001f).w(m_k053251, FUNC(k053251_device::write)).umask16(0xff00);
map(0x1d8000, 0x1d8003).rw("k053260_1", FUNC(k053260_device::main_read), FUNC(k053260_device::main_write)).umask16(0x00ff);
map(0x1e0000, 0x1e0003).rw("k053260_2", FUNC(k053260_device::main_read), FUNC(k053260_device::main_write)).umask16(0x00ff);
map(0x1e8000, 0x1e8001).w(FUNC(overdriv_state::overdriv_soundirq_w));