summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/pc4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pc4.cpp')
-rw-r--r--src/mame/drivers/pc4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pc4.cpp b/src/mame/drivers/pc4.cpp
index 99f3745b145..90894a86ea9 100644
--- a/src/mame/drivers/pc4.cpp
+++ b/src/mame/drivers/pc4.cpp
@@ -198,8 +198,8 @@ void pc4_state::machine_start()
m_rombank->configure_entries(0, 8, rom_base, 0x4000);
m_rombank->set_entry(0);
- m_busy_timer = timer_alloc(BUSY_TIMER);
- m_blink_timer = timer_alloc(BLINKING_TIMER);
+ m_busy_timer = timer_alloc(FUNC(pc4_state::clear_busy_flag), this);
+ m_blink_timer = timer_alloc(FUNC(pc4_state::blink_tick), this);
m_blink_timer->adjust(attotime::from_msec(409), 0, attotime::from_msec(409));
for (int i=0; i<8; i++)