summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tvc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tvc.cpp')
-rw-r--r--src/mame/drivers/tvc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tvc.cpp b/src/mame/drivers/tvc.cpp
index 85124c69a80..e1bee4affde 100644
--- a/src/mame/drivers/tvc.cpp
+++ b/src/mame/drivers/tvc.cpp
@@ -218,7 +218,7 @@ void tvc_state::set_mem_page(uint8_t data)
case 0xc0 : // External ROM selected
TVC_INSTALL_ROM_BANK(3, "bank4", 0xc000, 0xffff);
membank("bank4")->set_base(m_ext->base());
- space.install_readwrite_handler (0xc000, 0xdfff, read8_delegate(FUNC(tvc_state::expansion_r), this), write8_delegate(FUNC(tvc_state::expansion_w), this), 0);
+ space.install_readwrite_handler(0xc000, 0xdfff, read8_delegate(*this, FUNC(tvc_state::expansion_r)), write8_delegate(*this, FUNC(tvc_state::expansion_w)), 0);
m_bank_type[3] = -1;
break;
}
@@ -787,7 +787,7 @@ void tvc_state::tvc(machine_config &config)
crtc.set_screen("screen");
crtc.set_show_border_area(false);
crtc.set_char_width(8); /*?*/
- crtc.set_update_row_callback(FUNC(tvc_state::crtc_update_row), this);
+ crtc.set_update_row_callback(FUNC(tvc_state::crtc_update_row));
crtc.out_cur_callback().set(FUNC(tvc_state::int_ff_set));
/* internal ram */
@@ -830,7 +830,7 @@ void tvc_state::tvc(machine_config &config)
m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05);
/* quickload */
- QUICKLOAD(config, "quickload", "cas", attotime::from_seconds(6)).set_load_callback(FUNC(tvc_state::quickload_cb), this);
+ QUICKLOAD(config, "quickload", "cas", attotime::from_seconds(6)).set_load_callback(FUNC(tvc_state::quickload_cb));
/* Software lists */
SOFTWARE_LIST(config, "cart_list").set_original("tvc_cart");