summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/model3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/model3.cpp')
-rw-r--r--src/mame/drivers/model3.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/drivers/model3.cpp b/src/mame/drivers/model3.cpp
index 582b3703516..620868c807c 100644
--- a/src/mame/drivers/model3.cpp
+++ b/src/mame/drivers/model3.cpp
@@ -1325,33 +1325,33 @@ MACHINE_START_MEMBER(model3_state,model3_10)
{
configure_fast_ram();
- m_sound_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_sound_timer_tick),this));
- m_real3d_dma_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::real3d_dma_timer_callback),this));
- m_scan_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_scan_timer_tick),this));
+ m_sound_timer = timer_alloc(FUNC(model3_state::model3_sound_timer_tick), this);
+ m_real3d_dma_timer = timer_alloc(FUNC(model3_state::real3d_dma_timer_callback), this);
+ m_scan_timer = timer_alloc(FUNC(model3_state::model3_scan_timer_tick), this);
}
MACHINE_START_MEMBER(model3_state,model3_15)
{
configure_fast_ram();
- m_sound_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_sound_timer_tick),this));
- m_real3d_dma_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::real3d_dma_timer_callback),this));
- m_scan_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_scan_timer_tick),this));
+ m_sound_timer = timer_alloc(FUNC(model3_state::model3_sound_timer_tick), this);
+ m_real3d_dma_timer = timer_alloc(FUNC(model3_state::real3d_dma_timer_callback), this);
+ m_scan_timer = timer_alloc(FUNC(model3_state::model3_scan_timer_tick), this);
}
MACHINE_START_MEMBER(model3_state,model3_20)
{
configure_fast_ram();
- m_sound_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_sound_timer_tick),this));
- m_real3d_dma_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::real3d_dma_timer_callback),this));
- m_scan_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_scan_timer_tick),this));
+ m_sound_timer = timer_alloc(FUNC(model3_state::model3_sound_timer_tick), this);
+ m_real3d_dma_timer = timer_alloc(FUNC(model3_state::real3d_dma_timer_callback), this);
+ m_scan_timer = timer_alloc(FUNC(model3_state::model3_scan_timer_tick), this);
}
MACHINE_START_MEMBER(model3_state,model3_21)
{
configure_fast_ram();
- m_sound_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_sound_timer_tick),this));
- m_real3d_dma_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::real3d_dma_timer_callback),this));
- m_scan_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(model3_state::model3_scan_timer_tick),this));
+ m_sound_timer = timer_alloc(FUNC(model3_state::model3_sound_timer_tick), this);
+ m_real3d_dma_timer = timer_alloc(FUNC(model3_state::real3d_dma_timer_callback), this);
+ m_scan_timer = timer_alloc(FUNC(model3_state::model3_scan_timer_tick), this);
}
void model3_state::model3_init(int step)