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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// license:BSD-3-Clause
// copyright-holders: AJR
/**********************************************************************
OKI MSM6253 8-Bit 4-Channel A/D Converter
***********************************************************************
____ ____
/OSC OUT 1 |* \_/ | 18 OSC OUT
D-GND 2 | | 17 OSC IN
A-GND 3 | | 16 /RD
IN0 4 | | 15 /WR
IN1 5 | MSM6253RS | 14 ALE
IN2 6 | | 13 /CS
IN3 7 | | 12 A1
Vr 8 | | 11 A0
Vdd 9 |___________| 10 S.O.
**********************************************************************/
#ifndef MAME_MACHINE_MSM6253_H
#define MAME_MACHINE_MSM6253_H
#pragma once
//**************************************************************************
// CONFIGURATION MACROS
//**************************************************************************
#define MCFG_MSM6253_IN0_ANALOG_PORT(_input) \
downcast<msm6253_device &>(*device).set_input_tag(0, "^" _input);
#define MCFG_MSM6253_IN1_ANALOG_PORT(_input) \
downcast<msm6253_device &>(*device).set_input_tag(1, "^" _input);
#define MCFG_MSM6253_IN2_ANALOG_PORT(_input) \
downcast<msm6253_device &>(*device).set_input_tag(2, "^" _input);
#define MCFG_MSM6253_IN3_ANALOG_PORT(_input) \
downcast<msm6253_device &>(*device).set_input_tag(3, "^" _input);
#define MCFG_MSM6253_IN0_ANALOG_READ(_class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(0, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, this));
#define MCFG_MSM6253_IN1_ANALOG_READ(_class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(1, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, this));
#define MCFG_MSM6253_IN2_ANALOG_READ(_class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(2, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, this));
#define MCFG_MSM6253_IN3_ANALOG_READ(_class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(3, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, this));
#define MCFG_MSM6253_IN0_ANALOG_DEVREAD(_tag, _class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(0, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, _tag));
#define MCFG_MSM6253_IN1_ANALOG_DEVREAD(_tag, _class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(1, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, _tag));
#define MCFG_MSM6253_IN2_ANALOG_DEVREAD(_tag, _class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(2, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, _tag));
#define MCFG_MSM6253_IN3_ANALOG_DEVREAD(_tag, _class, _method) \
downcast<msm6253_device &>(*device).set_input_cb(3, msm6253_device::port_read_delegate(&_class::_method, #_class "::" #_method, _tag));
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> msm6253_device
class msm6253_device : public device_t
{
public:
typedef device_delegate<ioport_value ()> port_read_delegate;
// construction/destruction
msm6253_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
// configuration
void set_input_tag(int port, const char *tag) { m_analog_ports[port].set_tag(tag); }
template <typename Object> void set_input_cb(int port, Object &&cb) { m_analog_input_cb[port] = std::forward<Object>(cb); }
// write handlers
WRITE8_MEMBER(address_w);
WRITE8_MEMBER(select_w);
// read handlers
bool shift_out();
READ8_MEMBER(d0_r);
READ8_MEMBER(d7_r);
protected:
// device-level overrides
virtual void device_start() override;
private:
// helpers
template<int port> ioport_value port_read();
// input configuration
optional_ioport_array<4> m_analog_ports;
port_read_delegate m_analog_input_cb[4];
// private data
u8 m_shift_register;
};
// device type definition
DECLARE_DEVICE_TYPE(MSM6253, msm6253_device)
#endif // DEVICES_MACHINE_MSM6253_H
|