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
105
106
107
108
109
110
111
112
113
|
// license:BSD-3-Clause
// copyright-holders:smf,Barry Rodewald
/***************************************************************************
x2212.h
Xicor X2212 256 x 4 bit Nonvolatile Static RAM.
***************************************************************************/
#pragma once
#ifndef __X2212_H__
#define __X2212_H__
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define MCFG_X2212_ADD(_tag) \
MCFG_DEVICE_ADD(_tag, X2212, 0)
// some systems (like many early Atari games) wire up the /STORE signal
// to fire on power-down, effectively creating an "auto-save" functionality
#define MCFG_X2212_ADD_AUTOSAVE(_tag) \
MCFG_DEVICE_ADD(_tag, X2212, 0) \
x2212_device::static_set_auto_save(*device);
#define MCFG_X2210_ADD(_tag) \
MCFG_DEVICE_ADD(_tag, X2210, 0)
#define MCFG_X2210_ADD_AUTOSAVE(_tag) \
MCFG_DEVICE_ADD(_tag, X2210, 0) \
x2212_device::static_set_auto_save(*device);
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> x2212_device
class x2212_device : public device_t,
public device_memory_interface,
public device_nvram_interface
{
public:
// construction/destruction
x2212_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
x2212_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
// inline configuration helpers
static void static_set_auto_save(device_t &device);
// I/O operations
DECLARE_READ8_MEMBER( read );
DECLARE_WRITE8_MEMBER( write );
DECLARE_WRITE_LINE_MEMBER( store );
DECLARE_WRITE_LINE_MEMBER( recall );
protected:
// internal helpers
void store();
void recall();
// device-level overrides
virtual void device_start() override;
// device_memory_interface overrides
virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override;
// device_nvram_interface overrides
virtual void nvram_default() override;
virtual void nvram_read(emu_file &file) override;
virtual void nvram_write(emu_file &file) override;
int SIZE_DATA;
// configuration state
bool m_auto_save;
// device-specific configuration
address_space_config m_sram_space_config;
address_space_config m_e2prom_space_config;
// internal state
address_space * m_sram;
address_space * m_e2prom;
bool m_store;
bool m_array_recall;
};
class x2210_device : public x2212_device
{
public:
x2210_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
protected:
// device-level overrides
virtual void device_start() override;
};
// device type definition
extern const device_type X2212;
extern const device_type X2210;
#endif
|