summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/konamigx.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-05-02 10:36:12 +0900
committer R. Belmont <rb6502@users.noreply.github.com>2019-05-01 21:36:12 -0400
commitd1b52c82c8ecf6c44b12d346f0d20fe9d8d71842 (patch)
tree35b33cd2bb5e7d1c445a615189b906f89d820ce4 /src/mame/drivers/konamigx.cpp
parent0cb3806d372a30ecc4a67d03f5fb4d787b62318a (diff)
k054338.cpp : Simplify handlers, Reduce duplicates (#4949)
Diffstat (limited to 'src/mame/drivers/konamigx.cpp')
-rw-r--r--src/mame/drivers/konamigx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/konamigx.cpp b/src/mame/drivers/konamigx.cpp
index 316ba030c47..f99582389ec 100644
--- a/src/mame/drivers/konamigx.cpp
+++ b/src/mame/drivers/konamigx.cpp
@@ -1011,7 +1011,7 @@ void konamigx_state::gx_base_memmap(address_map &map)
map(0xd5a000, 0xd5a003).portr("SYSTEM_DSW");
map(0xd5c000, 0xd5c003).portr("INPUTS");
map(0xd5e000, 0xd5e003).portr("SERVICE");
- map(0xd80000, 0xd8001f).w(m_k054338, FUNC(k054338_device::long_w));
+ map(0xd80000, 0xd8001f).w(m_k054338, FUNC(k054338_device::word_w));
map(0xda0000, 0xda1fff).rw(m_k056832, FUNC(k056832_device::ram_word_r), FUNC(k056832_device::ram_word_w));
map(0xda2000, 0xda3fff).rw(m_k056832, FUNC(k056832_device::ram_word_r), FUNC(k056832_device::ram_word_w));
}