blob: 1138dab0f8b4543105200d1a54f52797fd3f3bd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/**********************************************************************
MOS 8706 Speech Glue Logic ASIC emulation
Copyright MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
**********************************************************************
_____ _____
_RES 1 |* \_/ | 28 Vdd
_IRQ 2 | | 27 D0
R/_W 3 | | 26 T6721A D0
phi0 4 | | 25 D1
_CS 5 | | 24 T6721A D1
A0 6 | | 23 D2
A1 7 | MOS8706 | 22 T6721A D2
8 | | 21 D3
_EOS 9 | | 20 T6721A D3
APD 10 | | 19 D4
phi2 11 | | 18 D5
DI 12 | | 17 D6
DTRD 13 | | 16 D7
GND 14 |_____________| 15 _WR
**********************************************************************/
#pragma once
#ifndef __MOS8706__
#define __MOS8706__
#include "emu.h"
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define MCFG_MOS8706_ADD(_tag, _clock) \
MCFG_DEVICE_ADD((_tag), MOS8706, _clock)
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> mos8706_device
class mos8706_device : public device_t
{
public:
mos8706_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
DECLARE_READ8_MEMBER( read );
DECLARE_WRITE8_MEMBER( write );
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
};
// device type definition
extern const device_type MOS8706;
#endif
|