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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
// license:BSD-3-Clause
// copyright-holders:smf
/***************************************************************************
Centronics printer interface
***************************************************************************/
#include "emu.h"
#include "ctronics.h"
// class centronics_device
DEFINE_DEVICE_TYPE(CENTRONICS, centronics_device, "centronics", "Centronics")
centronics_device::centronics_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, CENTRONICS, tag, owner, clock),
device_slot_interface(mconfig, *this),
m_strobe_handler(*this),
m_data0_handler(*this),
m_data1_handler(*this),
m_data2_handler(*this),
m_data3_handler(*this),
m_data4_handler(*this),
m_data5_handler(*this),
m_data6_handler(*this),
m_data7_handler(*this),
m_ack_handler(*this),
m_busy_handler(*this),
m_perror_handler(*this),
m_select_handler(*this),
m_autofd_handler(*this),
m_fault_handler(*this),
m_init_handler(*this),
m_sense_handler(*this),
m_select_in_handler(*this),
m_dev(nullptr)
{
}
void centronics_device::device_config_complete()
{
m_dev = dynamic_cast<device_centronics_peripheral_interface *>(get_card_device());
}
void centronics_device::device_reset()
{
if (m_dev && m_dev->supports_pin35_5v())
m_sense_handler(1);
}
void centronics_device::device_start()
{
m_strobe_handler.resolve_safe();
m_data0_handler.resolve_safe();
m_data1_handler.resolve_safe();
m_data2_handler.resolve_safe();
m_data3_handler.resolve_safe();
m_data4_handler.resolve_safe();
m_data5_handler.resolve_safe();
m_data6_handler.resolve_safe();
m_data7_handler.resolve_safe();
m_ack_handler.resolve_safe();
m_busy_handler.resolve_safe();
m_perror_handler.resolve_safe();
m_select_handler.resolve_safe();
m_autofd_handler.resolve_safe();
m_fault_handler.resolve_safe();
m_init_handler.resolve_safe();
m_sense_handler.resolve_safe();
m_select_in_handler.resolve_safe();
m_sense_handler(0);
// pull up
m_strobe_handler(1);
m_data0_handler(1);
m_data1_handler(1);
m_data2_handler(1);
m_data3_handler(1);
m_data4_handler(1);
m_data5_handler(1);
m_data6_handler(1);
m_data7_handler(1);
m_ack_handler(1);
m_busy_handler(1);
m_perror_handler(1);
m_select_handler(1);
m_autofd_handler(1);
m_fault_handler(1);
m_init_handler(1);
m_select_in_handler(1);
}
void centronics_device::set_output_latch(output_latch_device &latch)
{
latch.bit_handler<0>().set(*this, FUNC(centronics_device::write_data0));
latch.bit_handler<1>().set(*this, FUNC(centronics_device::write_data1));
latch.bit_handler<2>().set(*this, FUNC(centronics_device::write_data2));
latch.bit_handler<3>().set(*this, FUNC(centronics_device::write_data3));
latch.bit_handler<4>().set(*this, FUNC(centronics_device::write_data4));
latch.bit_handler<5>().set(*this, FUNC(centronics_device::write_data5));
latch.bit_handler<6>().set(*this, FUNC(centronics_device::write_data6));
latch.bit_handler<7>().set(*this, FUNC(centronics_device::write_data7));
}
WRITE_LINE_MEMBER( centronics_device::write_strobe ) { if (m_dev) m_dev->input_strobe(state); }
WRITE_LINE_MEMBER( centronics_device::write_data0 ) { if (m_dev) m_dev->input_data0(state); }
WRITE_LINE_MEMBER( centronics_device::write_data1 ) { if (m_dev) m_dev->input_data1(state); }
WRITE_LINE_MEMBER( centronics_device::write_data2 ) { if (m_dev) m_dev->input_data2(state); }
WRITE_LINE_MEMBER( centronics_device::write_data3 ) { if (m_dev) m_dev->input_data3(state); }
WRITE_LINE_MEMBER( centronics_device::write_data4 ) { if (m_dev) m_dev->input_data4(state); }
WRITE_LINE_MEMBER( centronics_device::write_data5 ) { if (m_dev) m_dev->input_data5(state); }
WRITE_LINE_MEMBER( centronics_device::write_data6 ) { if (m_dev) m_dev->input_data6(state); }
WRITE_LINE_MEMBER( centronics_device::write_data7 ) { if (m_dev) m_dev->input_data7(state); }
WRITE_LINE_MEMBER( centronics_device::write_ack ) { if (m_dev) m_dev->input_ack(state); }
WRITE_LINE_MEMBER( centronics_device::write_busy ) { if (m_dev) m_dev->input_busy(state); }
WRITE_LINE_MEMBER( centronics_device::write_perror ) { if (m_dev) m_dev->input_perror(state); }
WRITE_LINE_MEMBER( centronics_device::write_select ) { if (m_dev) m_dev->input_select(state); }
WRITE_LINE_MEMBER( centronics_device::write_autofd ) { if (m_dev) m_dev->input_autofd(state); }
WRITE_LINE_MEMBER( centronics_device::write_fault ) { if (m_dev) m_dev->input_fault(state); }
WRITE_LINE_MEMBER( centronics_device::write_init ) { if (m_dev) m_dev->input_init(state); }
WRITE_LINE_MEMBER( centronics_device::write_select_in ) { if (m_dev) m_dev->input_select_in(state); }
// class device_centronics_peripheral_interface
device_centronics_peripheral_interface::device_centronics_peripheral_interface(const machine_config &mconfig, device_t &device)
: device_interface(device, "centronics")
{
m_slot = dynamic_cast<centronics_device *>(device.owner());
}
device_centronics_peripheral_interface::~device_centronics_peripheral_interface()
{
}
#include "comxpl80.h"
#include "epson_ex800.h"
#include "epson_lx800.h"
#include "epson_lx810l.h"
#include "nec_p72.h"
#include "printer.h"
#include "covox.h"
#include "samdac.h"
#include "chessmec.h"
#include "smartboard.h"
void centronics_devices(device_slot_interface &device)
{
device.option_add("pl80", COMX_PL80);
device.option_add("ex800", EPSON_EX800);
device.option_add("lx800", EPSON_LX800);
device.option_add("lx810l", EPSON_LX810L);
device.option_add("ap2000", EPSON_AP2000);
device.option_add("p72", NEC_P72);
device.option_add("printer", CENTRONICS_PRINTER);
device.option_add("covox", CENTRONICS_COVOX);
device.option_add("covox_stereo", CENTRONICS_COVOX_STEREO);
device.option_add("samdac", CENTRONICS_SAMDAC);
device.option_add("chessmec", CENTRONICS_CHESSMEC);
device.option_add("smartboard", CENTRONICS_SMARTBOARD);
}
|