From 0d914e1ffb34781fdf7c98b5ba55e831f72f3cae Mon Sep 17 00:00:00 2001 From: cam900 Date: Sat, 2 Feb 2019 09:39:01 +0900 Subject: sn76496.cpp : Remove unnecessary handler, Remove unnecessary arguments in stereo_w write8smo handler is already exists (write) --- src/mame/drivers/m5.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/m5.cpp') diff --git a/src/mame/drivers/m5.cpp b/src/mame/drivers/m5.cpp index ff7f9e4d43d..14104c55c04 100644 --- a/src/mame/drivers/m5.cpp +++ b/src/mame/drivers/m5.cpp @@ -720,7 +720,7 @@ void m5_state::m5_io(address_map &map) map(0x00, 0x03).mirror(0x0c).rw(m_ctc, FUNC(z80ctc_device::read), FUNC(z80ctc_device::write)); map(0x10, 0x10).mirror(0x0e).rw("tms9928a", FUNC(tms9928a_device::vram_r), FUNC(tms9928a_device::vram_w)); map(0x11, 0x11).mirror(0x0e).rw("tms9928a", FUNC(tms9928a_device::register_r), FUNC(tms9928a_device::register_w)); - map(0x20, 0x20).mirror(0x0f).w(SN76489AN_TAG, FUNC(sn76489a_device::command_w)); + map(0x20, 0x20).mirror(0x0f).w(SN76489AN_TAG, FUNC(sn76489a_device::write)); map(0x30, 0x30).mirror(0x08).portr("Y0").w(FUNC(m5_state::mem64KBF_w)); // 64KBF paging map(0x31, 0x31).mirror(0x08).portr("Y1"); map(0x32, 0x32).mirror(0x08).portr("Y2"); @@ -1042,7 +1042,7 @@ void brno_state::brno_io(address_map &map) map(0x00, 0x03).mirror(0x0c).rw(m_ctc, FUNC(z80ctc_device::read), FUNC(z80ctc_device::write)); map(0x10, 0x10).mirror(0x0e).rw("tms9928a", FUNC(tms9928a_device::vram_r), FUNC(tms9928a_device::vram_w)); map(0x11, 0x11).mirror(0x0e).rw("tms9928a", FUNC(tms9928a_device::register_r), FUNC(tms9928a_device::register_w)); - map(0x20, 0x20).mirror(0x0f).w(SN76489AN_TAG, FUNC(sn76489a_device::command_w)); + map(0x20, 0x20).mirror(0x0f).w(SN76489AN_TAG, FUNC(sn76489a_device::write)); map(0x30, 0x30).portr("Y0"); map(0x31, 0x31).portr("Y1"); map(0x32, 0x32).portr("Y2"); -- cgit v1.2.3