diff options
Diffstat (limited to 'src/mame/machine/apollo.cpp')
-rw-r--r-- | src/mame/machine/apollo.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mame/machine/apollo.cpp b/src/mame/machine/apollo.cpp index 1b4f63013f1..9c6adb99b53 100644 --- a/src/mame/machine/apollo.cpp +++ b/src/mame/machine/apollo.cpp @@ -1276,8 +1276,7 @@ void apollo_stdio_device::device_start() m_tx_w.resolve_safe(); - m_poll_timer = machine().scheduler().timer_alloc(timer_expired_delegate( - FUNC(apollo_stdio_device::poll_timer), this)); + m_poll_timer = timer_alloc(FUNC(apollo_stdio_device::poll_timer), this); } //------------------------------------------------- @@ -1306,13 +1305,6 @@ void apollo_stdio_device::device_reset() m_poll_timer->adjust(attotime::zero, 0, attotime::from_msec(1)); // every 1ms } -void apollo_stdio_device::device_timer(emu_timer &timer, device_timer_id id, - int param) -{ -// FIXME? -// device_serial_interface::device_timer(timer, id, param); -} - void apollo_stdio_device::rcv_complete() // Rx completed receiving byte { receive_register_extract(); |