summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taito_o.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taito_o.cpp')
-rw-r--r--src/mame/drivers/taito_o.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/taito_o.cpp b/src/mame/drivers/taito_o.cpp
index 9403d02138b..d09da0d7018 100644
--- a/src/mame/drivers/taito_o.cpp
+++ b/src/mame/drivers/taito_o.cpp
@@ -69,7 +69,7 @@ void taitoo_state::parentj_map(address_map &map)
{
map(0x000000, 0x01ffff).rom();
map(0x100000, 0x10ffff).mirror(0x010000).ram();
- map(0x200000, 0x20000f).rw(this, FUNC(taitoo_state::io_r), FUNC(taitoo_state::io_w)); /* TC0220IOC ? */
+ map(0x200000, 0x20000f).rw(FUNC(taitoo_state::io_r), FUNC(taitoo_state::io_w)); /* TC0220IOC ? */
map(0x300000, 0x300003).rw("ymsnd", FUNC(ym2203_device::read), FUNC(ym2203_device::write)).umask16(0x00ff);
map(0x400000, 0x420fff).rw(m_tc0080vco, FUNC(tc0080vco_device::word_r), FUNC(tc0080vco_device::word_w));
map(0x500800, 0x500fff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette");