diff options
Diffstat (limited to 'src/devices/cpu/m6502/st2205u.cpp')
-rw-r--r-- | src/devices/cpu/m6502/st2205u.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/m6502/st2205u.cpp b/src/devices/cpu/m6502/st2205u.cpp index 0dfde79e388..ac50492e325 100644 --- a/src/devices/cpu/m6502/st2205u.cpp +++ b/src/devices/cpu/m6502/st2205u.cpp @@ -130,10 +130,10 @@ void st2205u_base_device::base_init(std::unique_ptr<mi_st2xxx> &&intf) { m_stream = stream_alloc(0, 4, 48000); - m_timer_12bit[0] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2205u_device::t0_interrupt), this)); - m_timer_12bit[1] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2205u_device::t1_interrupt), this)); - m_timer_12bit[2] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2205u_device::t2_interrupt), this)); - m_timer_12bit[3] = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(st2205u_device::t3_interrupt), this)); + m_timer_12bit[0] = timer_alloc(FUNC(st2205u_device::t0_interrupt), this); + m_timer_12bit[1] = timer_alloc(FUNC(st2205u_device::t1_interrupt), this); + m_timer_12bit[2] = timer_alloc(FUNC(st2205u_device::t2_interrupt), this); + m_timer_12bit[3] = timer_alloc(FUNC(st2205u_device::t3_interrupt), this); init_base_timer(0x0040); init_lcd_timer(0x0080); |