diff options
Diffstat (limited to 'src/devices/cpu/m6502/st2204.cpp')
-rw-r--r-- | src/devices/cpu/m6502/st2204.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/m6502/st2204.cpp b/src/devices/cpu/m6502/st2204.cpp index 2523f34d5a8..0e8541be87a 100644 --- a/src/devices/cpu/m6502/st2204.cpp +++ b/src/devices/cpu/m6502/st2204.cpp @@ -91,9 +91,9 @@ void st2204_device::device_start() init_base_timer(0x0020); init_lcd_timer(0x0040); - m_timer[0] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2204_device::t0_interrupt), this)); - m_timer[1] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2204_device::t1_interrupt), this)); - m_psg_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2204_device::psg_interrupt), this)); + m_timer[0] = timer_alloc(FUNC(st2204_device::t0_interrupt), this); + m_timer[1] = timer_alloc(FUNC(st2204_device::t1_interrupt), this); + m_psg_timer = timer_alloc(FUNC(st2204_device::psg_interrupt), this); save_item(NAME(m_tmode)); save_item(NAME(m_tcntr)); |