summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/x07.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/x07.cpp')
-rw-r--r--src/mame/drivers/x07.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/x07.cpp b/src/mame/drivers/x07.cpp
index 381ea73d1e8..c5e17aa5ab8 100644
--- a/src/mame/drivers/x07.cpp
+++ b/src/mame/drivers/x07.cpp
@@ -1378,11 +1378,11 @@ GFXDECODE_END
void x07_state::machine_start()
{
uint32_t ram_size = m_ram->size();
- m_rsta_clear = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(x07_state::rsta_clear),this));
- m_rstb_clear = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(x07_state::rstb_clear),this));
- m_beep_stop = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(x07_state::beep_stop),this));
- m_cass_poll = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(x07_state::cassette_poll),this));
- m_cass_tick = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(x07_state::cassette_tick),this));
+ m_rsta_clear = timer_alloc(FUNC(x07_state::rsta_clear), this);
+ m_rstb_clear = timer_alloc(FUNC(x07_state::rstb_clear), this);
+ m_beep_stop = timer_alloc(FUNC(x07_state::beep_stop), this);
+ m_cass_poll = timer_alloc(FUNC(x07_state::cassette_poll), this);
+ m_cass_tick = timer_alloc(FUNC(x07_state::cassette_tick), this);
m_nvram1->set_base(&m_t6834_ram, 0x800);
m_nvram2->set_base(m_ram->pointer(), ram_size);