summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cgenie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cgenie.cpp')
-rw-r--r--src/mame/drivers/cgenie.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cgenie.cpp b/src/mame/drivers/cgenie.cpp
index 1c73863fdaf..8600dc70ac9 100644
--- a/src/mame/drivers/cgenie.cpp
+++ b/src/mame/drivers/cgenie.cpp
@@ -114,9 +114,9 @@ void cgenie_state::cgenie_mem(address_map &map)
map(0x0000, 0x3fff).rom();
// AM_RANGE(0x4000, 0xbfff) AM_RAM // set up in machine_start
map(0xc000, 0xefff).noprw(); // cartridge space
- map(0xf000, 0xf3ff).rw(this, FUNC(cgenie_state::colorram_r), FUNC(cgenie_state::colorram_w)).share("colorram");
+ map(0xf000, 0xf3ff).rw(FUNC(cgenie_state::colorram_r), FUNC(cgenie_state::colorram_w)).share("colorram");
map(0xf400, 0xf7ff).ram().share("fontram");
- map(0xf800, 0xf8ff).mirror(0x300).r(this, FUNC(cgenie_state::keyboard_r));
+ map(0xf800, 0xf8ff).mirror(0x300).r(FUNC(cgenie_state::keyboard_r));
map(0xfc00, 0xffff).noprw(); // cartridge space
}
@@ -127,7 +127,7 @@ void cgenie_state::cgenie_io(address_map &map)
map(0xf9, 0xf9).rw("ay8910", FUNC(ay8910_device::data_r), FUNC(ay8910_device::data_w));
map(0xfa, 0xfa).w(m_crtc, FUNC(hd6845_device::address_w));
map(0xfb, 0xfb).rw(m_crtc, FUNC(hd6845_device::register_r), FUNC(hd6845_device::register_w));
- map(0xff, 0xff).rw(this, FUNC(cgenie_state::control_r), FUNC(cgenie_state::control_w));
+ map(0xff, 0xff).rw(FUNC(cgenie_state::control_r), FUNC(cgenie_state::control_w));
}