diff options
| author | 2018-01-21 23:42:41 +0100 | |
|---|---|---|
| committer | 2018-01-23 10:25:25 +0100 | |
| commit | 03ba80e0ef3e021f6ff89ef91ae5cdce4e24b994 (patch) | |
| tree | f127b7f533d36df2484f82fcb05cef5f4c04f232 /src/devices/machine/v3021.cpp | |
| parent | f61a64ea29bf46bf2deb2e1fbace5b24f3d7b0aa (diff) | |
xtal.h is dead, long live to xtal.cpp [O. Galibert]
Diffstat (limited to 'src/devices/machine/v3021.cpp')
| -rw-r--r-- | src/devices/machine/v3021.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/v3021.cpp b/src/devices/machine/v3021.cpp index 7909f56ee80..3e48d4e8ebb 100644 --- a/src/devices/machine/v3021.cpp +++ b/src/devices/machine/v3021.cpp @@ -86,7 +86,7 @@ void v3021_device::device_start() { /* let's call the timer callback every second */ m_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(v3021_device::timer_callback), this)); - m_timer->adjust(attotime::from_hz(clock() / XTAL_32_768kHz), 0, attotime::from_hz(clock() / XTAL_32_768kHz)); + m_timer->adjust(attotime::from_hz(clock() / XTAL(32'768)), 0, attotime::from_hz(clock() / XTAL(32'768))); system_time systime; machine().base_datetime(systime); |
