diff options
Diffstat (limited to 'src/devices/bus/rc2014/clock.h')
-rw-r--r-- | src/devices/bus/rc2014/clock.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/devices/bus/rc2014/clock.h b/src/devices/bus/rc2014/clock.h new file mode 100644 index 00000000000..225a2e09333 --- /dev/null +++ b/src/devices/bus/rc2014/clock.h @@ -0,0 +1,20 @@ +// license:BSD-3-Clause +// copyright-holders:Miodrag Milanovic +/********************************************************************** + + RC2014 Clock Module + +**********************************************************************/ + +#ifndef MAME_BUS_RC2014_CLOCK_H +#define MAME_BUS_RC2014_CLOCK_H + +#pragma once + +#include "bus/rc2014/rc2014.h" + +DECLARE_DEVICE_TYPE(RC2014_SINGLE_CLOCK, device_rc2014_card_interface) +DECLARE_DEVICE_TYPE(RC2014_DUAL_CLOCK, device_rc2014_ext_card_interface) +DECLARE_DEVICE_TYPE(RC2014_DUAL_CLOCK_40P, device_rc2014_card_interface) + +#endif // MAME_BUS_RC2014_CLOCK_H |