summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cvicny.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cvicny.cpp')
-rw-r--r--src/mame/drivers/cvicny.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cvicny.cpp b/src/mame/drivers/cvicny.cpp
index 82c6a8a8548..d73da9d7db2 100644
--- a/src/mame/drivers/cvicny.cpp
+++ b/src/mame/drivers/cvicny.cpp
@@ -86,9 +86,9 @@ void cvicny_state::cvicny_mem(address_map &map)
map.unmap_value_high();
map(0x0000, 0x07ff).rom(); // 1 x 2716
map(0x0800, 0x0bff).ram().mirror(0x400); // 2x 2114 static ram
- map(0x1000, 0x17ff).r(this, FUNC(cvicny_state::key_r));
- map(0x1800, 0x1fff).w(this, FUNC(cvicny_state::digit_w));
- map(0x2000, 0x27ff).w(this, FUNC(cvicny_state::segment_w));
+ map(0x1000, 0x17ff).r(FUNC(cvicny_state::key_r));
+ map(0x1800, 0x1fff).w(FUNC(cvicny_state::digit_w));
+ map(0x2000, 0x27ff).w(FUNC(cvicny_state::segment_w));
}