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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
// license:BSD-3-Clause
// copyright-holders:Angelo Salese
/****************************************************************************
P's Attack (c) 2004 Uniana
driver by Angelo Salese, based off original crystal.cpp by ElSemi
TODO:
- Compact Flash hookup;
- Requires timed based FIFO renderer, loops until both rear and front
are equal.
- Enables wavetable IRQ, even if so far no channel enables the submask;
- Unemulated 93C86 EEPROM device;
=============================================================================
P's Attack (c) 2004 Uniana Co., Ltd
+----------54321---654321--654321---------------------------+
|VOL TICKET GUN_1P GUN_2P +---------|
| | |
+-+ | 256MB |
| CC-DAC | Compact |
+-+ EMUL* | Flash |
| | |
|5 +---+ +---------|
|6 | | |
|P | R | 25.1750MHz +--------------+|
|I | A | | 42Pin* ||
|N | M | +--------------+|
| | | +--------------+|
|C +---+ +------------+ | SYS ||
|O | | +--------------+|
|N +---+ | | |
|N | | |VRenderZERO+| |
|E SERVICE | R | | MagicEyes | +-------+ 62256* |
|C | A | | | | RAM | |
|T TEST | M | | | +-------+ 62256* |
|O | | +------------+ |
|R RESET +---+ |
| 14.31818MHz |
+-+ |
| EEPROM |
+-+ GAL DSW |
| |
| VGA PIC BAT3.6V* |
+-----------------------------------------------------------+
* denotes unpopulated device
RAM are Samsung K4S641632H-TC75
VGA is a standard PC 15 pin VGA connection
DSW is 2 switch dipswitch (switches 3-8 are unpopulated)
PIC is a Microchip PIC16C711-041/P (silkscreened on the PCB as COSTOM)
SYS is a ST M27C160 EPROM (silkscreened on the PCB as SYSTEM_ROM_32M)
GAL is a GAL16V8B (not dumped)
EMUL is an unpopulated 8 pin connector
EEPROM is a 93C86 16K 5.0v Serial EEPROM (2048x8-bit or 1024x16-bit)
CC-DAC is a TDA1311A Stereo Continuous Calibration DAC
P's Attack non JAMMA standard 56pin Edge Connector Pinout:
56pin Edge Connector
Solder Side | Parts Side
------------------------------------------------------------------
GND | A | 1 | GND
GND | B | 2 | GND
+5 | C | 3 | +5
+5 | D | 4 | +5
Player 1 Start Lamp | E | 5 | Coin Lamp
+12 | F | 6 | +12
------------ KEY ------------| G | 7 |------------ KEY -----------
Player 2 Start Lamp | H | 8 | Coin Counter
L Speaker (-) | J | 9 | L Speaker (+)
R Speaker (-) | K | 10| R Speaker (+)
Video Vertical Sync | L | 11|
Video Green | M | 12| Video Red
Video Sync | N | 13| Video Blue
Service Switch | P | 14| Video GND
Video Horizontal Sync | R | 15| Test Switch
| S | 16| Coin Switch
Start Player 2 | T | 17| Start Player 1
| U | 18|
| V | 19|
| W | 20|
| X | 21|
| Y | 22|
| a | 23|
| b | 24|
| d | 25|
| e | 26|
GND | f | 27| GND
GND | g | 28| GND
TICKET is a 5 pin connector:
1| LED
2| GND
3| OUT
4| IN
5| +12v
GUN_xP are 6 pin gun connectors (pins 3-6 match the UNICO sytle guns):
GUN-1P: Left (Blue) Gun Connector Pinout
1| GND
2| Solenoid
3| Sensor
4| +5V
5| Switch (Trigger)
6| GND
GUN-2P: Right (Pink) Gun Connector Pinout
1| GND
2| Solenoid
3| Sensor
4| +5V
5| Switch (Trigger)
6| GND
****************************************************************************/
#include "emu.h"
#include "bus/ata/ataintf.h"
#include "cpu/se3208/se3208.h"
#include "machine/nvram.h"
#include "machine/eepromser.h"
#include "machine/vrender0.h"
#include "emupal.h"
class psattack_state : public driver_device
{
public:
psattack_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_workram(*this, "workram"),
m_maincpu(*this, "maincpu"),
m_vr0soc(*this, "vr0soc"),
m_ata(*this, "ata")
{ }
void init_psattack();
void psattack(machine_config &config);
private:
/* memory pointers */
required_shared_ptr<uint32_t> m_workram;
/* devices */
required_device<se3208_device> m_maincpu;
required_device<vrender0soc_device> m_vr0soc;
required_device<ata_interface_device> m_ata;
virtual void machine_start() override;
virtual void machine_reset() override;
void psattack_mem(address_map &map);
uint16_t cfcard_data_r();
uint8_t cfcard_regs_r(offs_t offset);
void cfcard_regs_w(offs_t offset, uint8_t data);
void output_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
};
// TODO: wrong, likely PIC protected too
uint8_t psattack_state::cfcard_regs_r(offs_t offset)
{
return m_ata->cs0_r(offset & 7, 0x000000ff);
}
void psattack_state::cfcard_regs_w(offs_t offset, uint8_t data)
{
m_ata->cs0_w(offset & 7, 0x000000ff);
}
uint16_t psattack_state::cfcard_data_r()
{
return m_ata->cs0_r(0, 0x0000ffff);
}
void psattack_state::output_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
// suppress logging for now
if (data)
logerror("output_w: %08x & %08x\n",data,mem_mask);
}
void psattack_state::psattack_mem(address_map &map)
{
map(0x00000000, 0x001fffff).rom().nopw();
// 0x1400c00, 0x1400c01 read cfcard memory (auto increment?)
// 0x1402800, 0x1402807 read/write regs?
// cf card interface
map(0x01400c00, 0x01400c01).r(FUNC(psattack_state::cfcard_data_r));
map(0x01402800, 0x01402807).rw(FUNC(psattack_state::cfcard_regs_r), FUNC(psattack_state::cfcard_regs_w));
map(0x01500000, 0x01500003).portr("IN0").w(FUNC(psattack_state::output_w));
map(0x01500004, 0x01500007).portr("IN1");
map(0x01500008, 0x0150000b).portr("IN2");
// 0x0150000c is prolly eeprom
map(0x01800000, 0x01ffffff).m(m_vr0soc, FUNC(vrender0soc_device::regs_map));
// map(0x01802410, 0x01802413) peripheral chip select for cf?
map(0x02000000, 0x027fffff).ram().share("workram");
map(0x03000000, 0x04ffffff).m(m_vr0soc, FUNC(vrender0soc_device::audiovideo_map));
}
static INPUT_PORTS_START( psattack )
PORT_START("IN0")
PORT_BIT( 0xffffffff, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("IN1")
PORT_BIT( 0xffffffff, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("IN2")
PORT_BIT( 0xffffffff, IP_ACTIVE_LOW, IPT_UNKNOWN )
INPUT_PORTS_END
void psattack_state::machine_start()
{
// ...
}
void psattack_state::machine_reset()
{
// ...
}
void psattack_state::psattack(machine_config &config)
{
SE3208(config, m_maincpu, 14318180 * 3); // TODO : different between each PCBs
m_maincpu->set_addrmap(AS_PROGRAM, &psattack_state::psattack_mem);
m_maincpu->iackx_cb().set(m_vr0soc, FUNC(vrender0soc_device::irq_callback));
// PIC16C711
VRENDER0_SOC(config, m_vr0soc, 14318180 * 3);
m_vr0soc->set_host_cpu_tag(m_maincpu);
m_vr0soc->set_external_vclk(XTAL(25'175'000)); // assumed from the only available XTal on PCB
ATA_INTERFACE(config, m_ata).options(ata_devices, "hdd", nullptr, true);
}
ROM_START( psattack )
ROM_REGION( 0x200000, "maincpu", 0 )
ROM_LOAD("5.sys", 0x000000, 0x200000, CRC(f09878e4) SHA1(25b8dbac47d3911615c8874746e420ece13e7181) )
ROM_REGION( 0x4010, "pic16c711", 0 )
ROM_LOAD("16c711.pic", 0x0000, 0x137b, CRC(617d8292) SHA1(d32d6054ce9db2e31efaf41015afcc78ed32f6aa) ) // raw dump
ROM_LOAD("16c711.bin", 0x0000, 0x4010, CRC(b316693f) SHA1(eba1f75043bd415268eedfdb95c475e73c14ff86) ) // converted to binary
DISK_REGION( "ata:0:hdd:image" )
DISK_IMAGE( "psattack", 0, SHA1(e99cd0dafc33ec13bf56061f81dc7c0a181594ee) )
ROM_END
void psattack_state::init_psattack()
{
}
GAME( 2004, psattack, 0, psattack, psattack, psattack_state, init_psattack, ROT0, "Uniana", "P's Attack", MACHINE_IS_SKELETON ) // has a CF card instead of flash roms
|