r32790 | r32791 | |
5 | 5 | |
6 | 6 | Same as system 80, except that the displays are 20-digit alphanumeric driven by Rockwell 10939/10941 chips. |
7 | 7 | |
8 | | Nothing works |
| 8 | Nothing works. |
9 | 9 | |
| 10 | PinMAME used for the display character generator. |
| 11 | |
10 | 12 | *****************************************************************************************************************/ |
11 | 13 | |
12 | 14 | #include "machine/genpin.h" |
r32790 | r32791 | |
33 | 35 | DECLARE_WRITE8_MEMBER(port3a_w); |
34 | 36 | DECLARE_WRITE8_MEMBER(port3b_w); |
35 | 37 | private: |
36 | | UINT8 m_port2; |
37 | | UINT8 m_segment; |
| 38 | UINT8 m_dispcmd; |
| 39 | UINT8 m_port2a; |
| 40 | UINT8 m_port2b; |
38 | 41 | UINT8 m_lamprow; |
39 | 42 | UINT8 m_swrow; |
| 43 | bool m_in_cmd_mode[2]; |
| 44 | UINT8 m_digit[2]; |
40 | 45 | virtual void machine_reset(); |
41 | 46 | required_device<cpu_device> m_maincpu; |
42 | 47 | optional_device<gottlieb_sound_r0_device> m_r0_sound; |
r32790 | r32791 | |
244 | 249 | PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_OTHER ) PORT_CODE(KEYCODE_O) |
245 | 250 | INPUT_PORTS_END |
246 | 251 | |
| 252 | static const UINT16 patterns[] = { |
| 253 | /* 0x00-0x07 */ 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 254 | /* 0x08-0x0f */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 255 | /* 0x10-0x17 */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 256 | /* 0x18-0x1f */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 257 | /* 0x20-0x27 */ 0x0000, 0x0309, 0x0220, 0x2A4E, 0x2A6D, 0x6E65, 0x135D, 0x0400, |
| 258 | /* 0x28-0x2f */ 0x1400, 0x4100, 0x7F40, 0x2A40, 0x0000, 0x0840, 0x0000, 0x4400, |
| 259 | /* 0x30-0x37 */ 0x003f, 0x2200, 0x085B, 0x084f, 0x0866, 0x086D, 0x087D, 0x0007, |
| 260 | /* 0x38-0x3f */ 0x087F, 0x086F, 0x0009, 0x4001, 0x4408, 0x0848, 0x1108, 0x2803, |
| 261 | /* 0x40-0x47 */ 0x205F, 0x0877, 0x2A0F, 0x0039, 0x220F, 0x0079, 0x0071, 0x083D, |
| 262 | /* 0x48-0x4f */ 0x0876, 0x2209, 0x001E, 0x1470, 0x0038, 0x0536, 0x1136, 0x003f, |
| 263 | /* 0x50-0x57 */ 0x0873, 0x103F, 0x1873, 0x086D, 0x2201, 0x003E, 0x4430, 0x5036, |
| 264 | /* 0x58-0x5f */ 0x5500, 0x2500, 0x4409, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 265 | /* 0x60-0x67 */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 266 | /* 0x68-0x6f */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 267 | /* 0x70-0x77 */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 268 | /* 0x78-0x7f */ 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, |
| 269 | }; |
| 270 | |
247 | 271 | READ8_MEMBER( gts80b_state::port1a_r ) |
248 | 272 | { |
249 | 273 | char kbdrow[8]; |
250 | 274 | UINT8 data = 0; |
251 | | if ((m_lamprow < 4) && (m_segment==0x80)) |
| 275 | if ((m_lamprow < 4) && (m_port2b==0x80)) |
252 | 276 | { |
253 | 277 | sprintf(kbdrow,"DSW.%d",m_lamprow); |
254 | 278 | data = ioport(kbdrow)->read(); |
r32790 | r32791 | |
264 | 288 | |
265 | 289 | READ8_MEMBER( gts80b_state::port2a_r ) |
266 | 290 | { |
267 | | return m_port2 | 0x80; // slam tilt off |
| 291 | return m_port2a | 0x80; // slam tilt off |
268 | 292 | } |
269 | 293 | |
270 | 294 | // sw strobes |
r32790 | r32791 | |
273 | 297 | m_swrow = data; |
274 | 298 | } |
275 | 299 | |
276 | | // schematic and pinmame say '1' is indicated by m_segment !bits 4,5,6, but it is !bit 7 |
277 | 300 | WRITE8_MEMBER( gts80b_state::port2a_w ) |
278 | 301 | { |
279 | | m_port2 = data; |
280 | | static const UINT8 patterns[16] = { 0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7c,0x07,0x7f,0x67,0x58,0x4c,0x62,0x69,0x78,0 }; // 7448 |
281 | | UINT16 seg1 = (UINT16)patterns[m_segment & 15]; |
282 | | UINT16 seg2 = BITSWAP16(seg1, 8, 8, 8, 8, 8, 8, 7, 7, 6, 6, 5, 4, 3, 2, 1, 0); |
283 | | switch (data & 0x70) |
284 | | { |
285 | | case 0x10: // player 1&2 |
286 | | if (!BIT(m_segment, 7)) seg2 |= 0x300; // put '1' in the middle |
287 | | output_set_digit_value(data & 15, seg2); |
288 | | break; |
289 | | case 0x20: // player 3&4 |
290 | | if (!BIT(m_segment, 7)) seg2 |= 0x300; // put '1' in the middle |
291 | | output_set_digit_value((data & 15)+20, seg2); |
292 | | break; |
293 | | case 0x40: // credits & balls |
294 | | if (!BIT(m_segment, 7)) m_segment = 1; // turn '1' back to normal |
295 | | output_set_digit_value((data & 15)+40, patterns[m_segment & 15]); |
296 | | break; |
297 | | } |
| 302 | m_port2a = data; |
| 303 | if BIT(data, 4) |
| 304 | m_dispcmd = (m_dispcmd & 0xf0) | m_port2b; |
| 305 | if BIT(data, 5) |
| 306 | m_dispcmd = (m_dispcmd & 0x0f) | (m_port2b << 4); |
298 | 307 | } |
299 | 308 | |
300 | | //d0-3 bcd data; d4-6 = centre segment; d7 = dipsw enable |
| 309 | //d0-3 data; d4-5 = which display enabled; d6 = display reset; d7 = dipsw enable |
301 | 310 | WRITE8_MEMBER( gts80b_state::port2b_w ) |
302 | 311 | { |
303 | | m_segment = data;//printf("%s:%X ",machine().describe_context(),data); |
| 312 | m_port2b = data & 15; |
| 313 | UINT16 segment; |
| 314 | |
| 315 | // crude approximation of the Rockwell display chips |
| 316 | for (UINT8 i = 0; i < 2; i++) // 2 chips |
| 317 | { |
| 318 | if (!BIT(data, i+4)) // are we addressing the chip? |
| 319 | { |
| 320 | if (m_in_cmd_mode[i]) // in command mode? |
| 321 | { |
| 322 | if ((m_dispcmd >= 0xc0) && (m_dispcmd < 0xd4)) // we only support one command |
| 323 | m_digit[i] = data & 0x1f; |
| 324 | m_in_cmd_mode[i] = false; |
| 325 | } |
| 326 | else |
| 327 | if (m_dispcmd == 1) // 01 = enter command mode |
| 328 | { |
| 329 | m_in_cmd_mode[i] = true; |
| 330 | } |
| 331 | else |
| 332 | { // display a character |
| 333 | segment = patterns[m_dispcmd & 0x7f]; // ignore blank/inverse bit |
| 334 | segment = BITSWAP16(segment, 12, 10, 8, 14, 13, 9, 11, 6, 5, 4, 3, 3, 2, 1, 0, 0); |
| 335 | output_set_digit_value(m_digit[i]+i*20, segment); |
| 336 | m_digit[i]++; // auto-increment pointer |
| 337 | if (m_digit[i] > 19) m_digit[i] = 0; // check for overflow |
| 338 | } |
| 339 | } |
| 340 | } |
304 | 341 | } |
305 | 342 | |
306 | 343 | // solenoids |
r32790 | r32791 | |
321 | 358 | |
322 | 359 | void gts80b_state::machine_reset() |
323 | 360 | { |
| 361 | m_in_cmd_mode[0] = false; |
| 362 | m_in_cmd_mode[1] = false; |
324 | 363 | } |
325 | 364 | |
326 | 365 | DRIVER_INIT_MEMBER( gts80b_state, gts80b ) |