summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mgavegas.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-03-12 18:10:30 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2020-03-12 18:10:30 +0100
commit6525dc0cbfcfde2d123a4f7beaf42570010238b1 (patch)
treea2d8da881880636f54661591ed08193989e5f085 /src/mame/drivers/mgavegas.cpp
parent037d9d1b7059d276dca507bd8776efa7329fec95 (diff)
devices/sound: more handler simplification (nw)
Diffstat (limited to 'src/mame/drivers/mgavegas.cpp')
-rw-r--r--src/mame/drivers/mgavegas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mgavegas.cpp b/src/mame/drivers/mgavegas.cpp
index c9b80303565..eacf1129e31 100644
--- a/src/mame/drivers/mgavegas.cpp
+++ b/src/mame/drivers/mgavegas.cpp
@@ -349,7 +349,7 @@ WRITE8_MEMBER(mgavegas_state::csoki_w)
if (LOG_MSM5205)
logerror("MSM5205 write to %04X data = %02X \n",offset+0xc800,data);
m_msm->reset_w(data&0x10>>4);
- m_msm->write_data(data&0x0f);
+ m_msm->data_w(data&0x0f);
}