blob: ce9320b37cc0e9780c60410b811b5b049865fa18 (
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
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/**********************************************************************
MOS 8706 Speech Glue Logic ASIC emulation
**********************************************************************
_____ _____
_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
**********************************************************************/
#ifndef MAME_MACHINE_MOS8706_H
#define MAME_MACHINE_MOS8706_H
#pragma once
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> mos8706_device
class mos8706_device : public device_t
{
public:
mos8706_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
uint8_t read(offs_t offset);
void write(offs_t offset, uint8_t data);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
};
// device type definition
DECLARE_DEVICE_TYPE(MOS8706, mos8706_device)
#endif // MAME_MACHINE_MOS8706_H
|