summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jr100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jr100.cpp')
-rw-r--r--src/mame/drivers/jr100.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/jr100.cpp b/src/mame/drivers/jr100.cpp
index f4e62befc94..d1cd8fbc757 100644
--- a/src/mame/drivers/jr100.cpp
+++ b/src/mame/drivers/jr100.cpp
@@ -136,7 +136,7 @@ void jr100_state::jr100_mem(address_map &map)
map(0x0000, 0x3fff).ram().share("ram");
map(0xc000, 0xc0ff).ram().share("pcg");
map(0xc100, 0xc3ff).ram().share("vram");
- map(0xc800, 0xc80f).r(m_via, FUNC(via6522_device::read)).w(this, FUNC(jr100_state::jr100_via_w));
+ map(0xc800, 0xc80f).r(m_via, FUNC(via6522_device::read)).w(FUNC(jr100_state::jr100_via_w));
map(0xe000, 0xffff).rom();
}