blob: 016f05884ae4fa7476dd97a98b6c4f688c08f0ae (
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
74
75
76
77
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
/***************************************************************************
RP5H01 - Ricoh 64x1bit(+8bit) PROM with 6/7-bit counter
****************************************************************************
___________
DATA 1 |* | 8 COUNTER OUT
| |
_CE/Vpp 2 | RP5H01 | 7 RESET
| RF5H01 |
Vcc 3 | | 6 DATA CLOCK
| |
GND 4 |___________| 5 TEST
***************************************************************************/
#ifndef __RP5H01_H__
#define __RP5H01_H__
/***************************************************************************
PARAMETERS
***************************************************************************/
/* these also work as the address masks */
enum {
COUNTER_MODE_6_BITS = 0x3f,
COUNTER_MODE_7_BITS = 0x7f
};
/***************************************************************************
MACROS / CONSTANTS
***************************************************************************/
class rp5h01_device : public device_t
{
public:
rp5h01_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
DECLARE_WRITE_LINE_MEMBER( enable_w ); /* /CE */
DECLARE_WRITE_LINE_MEMBER( reset_w ); /* RESET */
DECLARE_WRITE_LINE_MEMBER( cs_w ); /* CS */
DECLARE_WRITE_LINE_MEMBER( clock_w ); /* DATA CLOCK (active low) */
DECLARE_WRITE_LINE_MEMBER( test_w ); /* TEST */
DECLARE_READ_LINE_MEMBER( counter_r ); /* COUNTER OUT */
DECLARE_READ_LINE_MEMBER( data_r ); /* DATA */
protected:
// device-level overrides
virtual void device_config_complete();
virtual void device_start();
virtual void device_reset();
private:
// internal state
int m_counter;
int m_counter_mode; /* test pin */
int m_enabled; /* chip enable */
int m_old_reset; /* reset pin state (level-triggered) */
int m_old_clock; /* clock pin state (level-triggered) */
const UINT8 *m_data;
};
extern const device_type RP5H01;
#define MCFG_RP5H01_ADD(_tag) \
MCFG_DEVICE_ADD(_tag, RP5H01, 0)
/*
* Device uses memory region
* with the same tag as the one
* assigned to device.
*/
#endif /* __RP5H01_H__ */
|