summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/hotblock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/hotblock.cpp')
-rw-r--r--src/mame/drivers/hotblock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/hotblock.cpp b/src/mame/drivers/hotblock.cpp
index d21a1e818fa..17683f253b4 100644
--- a/src/mame/drivers/hotblock.cpp
+++ b/src/mame/drivers/hotblock.cpp
@@ -133,14 +133,14 @@ WRITE8_MEMBER(hotblock_state::video_write)
void hotblock_state::hotblock_map(address_map &map)
{
map(0x00000, 0x0ffff).ram();
- map(0x10000, 0x1ffff).rw(this, FUNC(hotblock_state::video_read), FUNC(hotblock_state::video_write)).share("vram");
+ map(0x10000, 0x1ffff).rw(FUNC(hotblock_state::video_read), FUNC(hotblock_state::video_write)).share("vram");
map(0x20000, 0xfffff).rom();
}
void hotblock_state::hotblock_io(address_map &map)
{
- map(0x0000, 0x0000).w(this, FUNC(hotblock_state::port0_w));
- map(0x0004, 0x0004).rw(this, FUNC(hotblock_state::port4_r), FUNC(hotblock_state::port4_w));
+ map(0x0000, 0x0000).w(FUNC(hotblock_state::port0_w));
+ map(0x0004, 0x0004).rw(FUNC(hotblock_state::port4_r), FUNC(hotblock_state::port4_w));
map(0x8000, 0x8001).w("aysnd", FUNC(ym2149_device::address_data_w));
map(0x8001, 0x8001).r("aysnd", FUNC(ym2149_device::data_r));
}