vtvideo: Derive the clock for the timer (nw)

This commit is contained in:
AJR 2017-12-31 00:08:48 -05:00
parent 47ca5bf03a
commit 16f6a945d1

View File

@ -108,7 +108,7 @@ void vt100_video_device::device_start()
// LBA7 is scan line frequency update
m_lba7_change_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(vt100_video_device::lba7_change), this));
m_lba7_change_timer->adjust(attotime::from_nsec(31778), 0, attotime::from_nsec(31778));
m_lba7_change_timer->adjust(clocks_to_attotime(765), 0, clocks_to_attotime(765));
save_item(NAME(m_lba7));
save_item(NAME(m_scroll_latch));