summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mz6500.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mz6500.cpp')
-rw-r--r--src/mame/drivers/mz6500.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mz6500.cpp b/src/mame/drivers/mz6500.cpp
index 3422884d0db..82c3f48257c 100644
--- a/src/mame/drivers/mz6500.cpp
+++ b/src/mame/drivers/mz6500.cpp
@@ -85,7 +85,7 @@ void mz6500_state::mz6500_map(address_map &map)
map.unmap_value_high();
map(0x00000, 0x9ffff).ram();
// AM_RANGE(0xa0000,0xbffff) kanji/dictionary ROM
- map(0xc0000, 0xeffff).rw(this, FUNC(mz6500_state::mz6500_vram_r), FUNC(mz6500_state::mz6500_vram_w));
+ map(0xc0000, 0xeffff).rw(FUNC(mz6500_state::mz6500_vram_r), FUNC(mz6500_state::mz6500_vram_w));
map(0xfc000, 0xfffff).rom().region("ipl", 0);
}