blob: 264f8e065d941f997df087aa1791c68d71bf0c8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// license:BSD-3-Clause
// copyright-holders:R. Belmont
/*********************************************************************
a2echoii.h
Implementation of the Street Electronics Echo II speech card
*********************************************************************/
#ifndef MAME_BUS_A2BUS_A2ECHOII_H
#define MAME_BUS_A2BUS_A2ECHOII_H
#pragma once
#include "a2bus.h"
// device type declaration
DECLARE_DEVICE_TYPE(A2BUS_ECHOII, device_a2bus_card_interface)
#endif // MAME_BUS_A2BUS_A2ECHOII_H
|