diff options
author | 2016-01-19 17:09:41 +0100 | |
---|---|---|
committer | 2016-01-19 17:10:17 +0100 | |
commit | 1a7b8364f6b13ec4a70cea8b84d39fe417129af8 (patch) | |
tree | ef2c78cf2d92f21f1a4e96fe17e179d99bda3753 /src/emu/timer.cpp | |
parent | 62c0bda9522b3b6572e99ab179c77b0146e00de9 (diff) |
fixed issue with -lx (nw)
Diffstat (limited to 'src/emu/timer.cpp')
-rw-r--r-- | src/emu/timer.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/emu/timer.cpp b/src/emu/timer.cpp index da5ea876c68..f1a7ea44dd5 100644 --- a/src/emu/timer.cpp +++ b/src/emu/timer.cpp @@ -50,6 +50,17 @@ timer_device::timer_device(const machine_config &mconfig, std::string tag, devic //------------------------------------------------- +// static_configure_generic_empty - configuration +// helper to set up a generic timer +//------------------------------------------------- + +void timer_device::static_configure_generic_empty(device_t &device) +{ + timer_device &timer = downcast<timer_device &>(device); + timer.m_type = TIMER_TYPE_GENERIC; +} + +//------------------------------------------------- // static_configure_generic - configuration // helper to set up a generic timer //------------------------------------------------- |