blob: 225a2e0933372c00fe44f5a3eb167bf65c709b25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|