blob: 87066e6cd6ef45f4ed6ab97da2c5ca1e81bffddd (
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
/*********************************************************************
a2sam.h
Implementation of the S.A.M. "Software Automated Mouth" card
*********************************************************************/
#ifndef MAME_BUS_A2BUS_A2SAM_H
#define MAME_BUS_A2BUS_A2SAM_H
#pragma once
#include "a2bus.h"
// device type declaration
DECLARE_DEVICE_TYPE(A2BUS_SAM, device_a2bus_card_interface)
#endif // MAME_BUS_A2BUS_A2SAM_H
|