blob: 60fe94d838f232fb13cd9e7d2ba0deda5c81359f (
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 Serial Module
**********************************************************************/
#ifndef MAME_BUS_RC2014_SERIAL_H
#define MAME_BUS_RC2014_SERIAL_H
#pragma once
#include "bus/rc2014/rc2014.h"
DECLARE_DEVICE_TYPE(RC2014_SERIAL_IO, device_rc2014_card_interface)
DECLARE_DEVICE_TYPE(RC2014_DUAL_SERIAL, device_rc2014_ext_card_interface)
DECLARE_DEVICE_TYPE(RC2014_DUAL_SERIAL_40P, device_rc2014_card_interface)
#endif // MAME_BUS_RC2014_SERIAL_H
|