summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cxgz80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cxgz80.cpp')
-rw-r--r--src/mame/drivers/cxgz80.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/cxgz80.cpp b/src/mame/drivers/cxgz80.cpp
index 9c05383c880..2c28dae3463 100644
--- a/src/mame/drivers/cxgz80.cpp
+++ b/src/mame/drivers/cxgz80.cpp
@@ -272,8 +272,8 @@ void cxgz80_state::ch2001_map(address_map &map)
{
map(0x0000, 0x3fff).rom();
map(0x4000, 0x47ff).mirror(0x3800).ram();
- map(0x8000, 0x8000).mirror(0x3fff).rw(this, FUNC(cxgz80_state::ch2001_input_r), FUNC(cxgz80_state::ch2001_leds_w));
- map(0xc000, 0xc000).mirror(0x3fff).w(this, FUNC(cxgz80_state::ch2001_speaker_on_w));
+ map(0x8000, 0x8000).mirror(0x3fff).rw(FUNC(cxgz80_state::ch2001_input_r), FUNC(cxgz80_state::ch2001_leds_w));
+ map(0xc000, 0xc000).mirror(0x3fff).w(FUNC(cxgz80_state::ch2001_speaker_on_w));
}