summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/c900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/c900.cpp')
-rw-r--r--src/mame/drivers/c900.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/c900.cpp b/src/mame/drivers/c900.cpp
index d877940503e..3fdc267ae98 100644
--- a/src/mame/drivers/c900.cpp
+++ b/src/mame/drivers/c900.cpp
@@ -71,8 +71,8 @@ void c900_state::io_map(address_map &map)
{
map(0x0000, 0x007f).rw("cio", FUNC(z8036_device::read), FUNC(z8036_device::write)).umask16(0x00ff);
//AM_RANGE(0x0100, 0x011f) AM_DEVREADWRITE8("scc", scc8030_device, zbus_r, zbus_w, 0x00ff) // range for one channel
- map(0x0100, 0x0101).r(this, FUNC(c900_state::stat_r));
- map(0x0110, 0x0111).r(this, FUNC(c900_state::key_r));
+ map(0x0100, 0x0101).r(FUNC(c900_state::stat_r));
+ map(0x0110, 0x0111).r(FUNC(c900_state::key_r));
map(0x0111, 0x0111).w(m_terminal, FUNC(generic_terminal_device::write));
}