summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/taitosjsec.cpp
blob: cbb2502078c239fa5218a184494fe87e19c87b47 (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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
#include "emu.h"
#include "taitosjsec.h"

DEFINE_DEVICE_TYPE(TAITO_SJ_SECURITY_MCU,  taito_sj_security_mcu_device, "taitosjsecmcu", "Taito SJ Security MCU Interface")


taito_sj_security_mcu_device::taito_sj_security_mcu_device(
		machine_config const &mconfig,
		char const *tag,
		device_t *owner,
		u32 clock)
	: device_t(mconfig,TAITO_SJ_SECURITY_MCU, tag, owner, clock)
	, m_mcu(*this, "mcu")
	, m_int_mode(int_mode::NONE)
	, m_68read_cb(*this)
	, m_68write_cb(*this)
	, m_68intrq_cb(*this)
	, m_busrq_cb(*this)
	, m_addr(0U)
	, m_mcu_data(0U)
	, m_host_data(0U)
	, m_read_data(0U)
	, m_zaccept(false)
	, m_zready(false)
	, m_pb_val(0U)
	, m_busak(false)
	, m_reset(false)
{
}

READ8_MEMBER(taito_sj_security_mcu_device::data_r)
{
	if (BIT(offset, 0))
	{
		// ZLSTATUS
		machine().scheduler().boost_interleave(attotime::zero, attotime::from_usec(10));
		return
				(u8(space.unmap()) & 0xfc) |
				u8(m_zaccept ? 0x00 : 0x02) |
				u8(m_zready ? 0x00 : 0x01);
	}
	else
	{
		// ZLREAD
		if (!machine().side_effects_disabled())
			m_zaccept = true;
		return m_mcu_data;
	}
}

WRITE8_MEMBER(taito_sj_security_mcu_device::data_w)
{
	if (BIT(offset, 0))
	{
		// ZINTRQ
		// if jumpered this way, the Z80 write strobe pulses the MCU interrupt line
		// should be PULSE_LINE because it's edge sensitive, but diexec only allows PULSE_LINE on reset and NMI
		if (int_mode::WRITE == m_int_mode)
			m_mcu->set_input_line(M68705_IRQ_LINE, HOLD_LINE);
	}
	else
	{
		// ZLWRITE
		device_scheduler &sched(machine().scheduler());
		sched.synchronize(timer_expired_delegate(FUNC(taito_sj_security_mcu_device::do_host_write), this), data);
		sched.boost_interleave(attotime::zero, attotime::from_usec(10));
	}
}

WRITE_LINE_MEMBER(taito_sj_security_mcu_device::busak_w)
{
	m_busak = (ASSERT_LINE == state);
}

WRITE_LINE_MEMBER(taito_sj_security_mcu_device::reset_w)
{
	m_reset = (ASSERT_LINE == state);
	if (CLEAR_LINE != state)
	{
		m_zaccept = true;
		m_zready = false;
		if (int_mode::LATCH == m_int_mode)
			m_mcu->set_input_line(M68705_IRQ_LINE, CLEAR_LINE);
	}
	m_mcu->set_input_line(INPUT_LINE_RESET, state);
}

void taito_sj_security_mcu_device::device_start()
{
	m_68read_cb.resolve_safe(0xff);
	m_68write_cb.resolve_safe();
	m_68intrq_cb.resolve_safe();
	m_busrq_cb.resolve_safe();

	save_item(NAME(m_addr));
	save_item(NAME(m_mcu_data));
	save_item(NAME(m_host_data));
	save_item(NAME(m_read_data));
	save_item(NAME(m_zaccept));
	save_item(NAME(m_zready));
	save_item(NAME(m_pb_val));
	save_item(NAME(m_busak));
	save_item(NAME(m_reset));

	m_addr = 0xffffU;
	m_mcu_data = 0xffU;
	m_host_data = 0xffU;
	m_read_data = 0xffU;
	m_pb_val = 0xffU;
	m_busak = false;
	m_reset = false;
}

void taito_sj_security_mcu_device::device_reset()
{
	m_zaccept = true;
	m_zready = false;
	if (int_mode::LATCH == m_int_mode)
		m_mcu->set_input_line(M68705_IRQ_LINE, CLEAR_LINE);
}

MACHINE_CONFIG_START(taito_sj_security_mcu_device::device_add_mconfig)
	MCFG_DEVICE_ADD("mcu", M68705P5, DERIVED_CLOCK(1, 1))
	MCFG_M68705_PORTA_R_CB(READ8(*this, taito_sj_security_mcu_device, mcu_pa_r))
	MCFG_M68705_PORTC_R_CB(READ8(*this, taito_sj_security_mcu_device, mcu_pc_r))
	MCFG_M68705_PORTA_W_CB(WRITE8(*this, taito_sj_security_mcu_device, mcu_pa_w))
	MCFG_M68705_PORTB_W_CB(WRITE8(*this, taito_sj_security_mcu_device, mcu_pb_w))
MACHINE_CONFIG_END

READ8_MEMBER(taito_sj_security_mcu_device::mcu_pa_r)
{
	return get_bus_val();
}

READ8_MEMBER(taito_sj_security_mcu_device::mcu_pc_r)
{
	// FIXME 68INTAK is on PC3 but we're ignoring it
	return
			(m_zready ? 0x01U : 0x00U) |
			(m_zaccept ? 0x02U : 0x00U) |
			(m_busak ? 0x00U : 0x04U);
}

WRITE8_MEMBER(taito_sj_security_mcu_device::mcu_pa_w)
{
	m_pa_val = data;
	if (BIT(~m_pb_val, 6))
		m_addr = (m_addr & 0xff00U) | u16(get_bus_val());
}

WRITE8_MEMBER(taito_sj_security_mcu_device::mcu_pb_w)
{
	bool inc_addr(false);
	u8 const diff(m_pb_val ^ data);

	// 68INTRQ
	if (BIT(diff, 0))
		m_68intrq_cb(BIT(data, 0) ? CLEAR_LINE : ASSERT_LINE);

	// 68LRD
	u8 const bus_val(get_bus_val());
	if (BIT(diff & data, 1))
	{
		machine().scheduler().synchronize(timer_expired_delegate(FUNC(taito_sj_security_mcu_device::do_mcu_read), this));
		if (int_mode::LATCH == m_int_mode)
			m_mcu->set_input_line(M68705_IRQ_LINE, CLEAR_LINE);
	}

	// 68LWR
	if (BIT(diff & data, 2))
		machine().scheduler().synchronize(timer_expired_delegate(FUNC(taito_sj_security_mcu_device::do_mcu_write), this), bus_val);

	// BUSRQ
	if (BIT(diff, 3))
		m_busrq_cb(BIT(data, 3) ? CLEAR_LINE : ASSERT_LINE);

	// 68WRITE
	if (BIT(diff, 4))
	{
		if (BIT(~data, 4))
			m_68write_cb(space, m_addr, bus_val);
		else if (BIT(data, 5))
			inc_addr = true;
	}

	// 68READ
	if (BIT(diff, 5))
	{
		if (BIT(~data, 5))
			m_read_data = m_68read_cb(space, m_addr);
		else if (BIT(data, 4))
			inc_addr = true;
	}

	// LAL
	if (BIT(~data, 6))
		m_addr = (m_addr & 0xff00U) | u16(bus_val);
	else if (inc_addr)
		m_addr = (m_addr & 0xff00U) | ((m_addr + 1) & 0x00ffU);

	// UAL
	if (BIT(~data, 7))
		m_addr = (m_addr & 0x00ffU) | (u16(bus_val) << 8);

	m_pb_val = data;
}

TIMER_CALLBACK_MEMBER(taito_sj_security_mcu_device::do_mcu_read)
{
	m_zready = false;
}

TIMER_CALLBACK_MEMBER(taito_sj_security_mcu_device::do_mcu_write)
{
	m_mcu_data = u8(param);
	if (!m_reset)
		m_zaccept = false;
}

TIMER_CALLBACK_MEMBER(taito_sj_security_mcu_device::do_host_write)
{
	m_host_data = u8(param);
	if (!m_reset)
	{
		m_zready = true;
		if (int_mode::LATCH == m_int_mode)
			m_mcu->set_input_line(M68705_IRQ_LINE, ASSERT_LINE);
	}
}