Previous 199869 Revisions Next

r31829 Friday 29th August, 2014 at 14:29:45 UTC by Brian Troha
Minor doc updates: ID the MB89372 & Link PCB layout - NW
[src/mame/drivers]segaxbd.c segaybd.c

trunk/src/mame/drivers/segaxbd.c
r31828r31829
232232      Z80 clock: 8.000MHz [16/2]
233233      6264     : 8k x8 SRAM
234234      MB8421   : Fujitsu 2k x8 Dual-Port SRAM (SDIP52)
235      MB89372  : ?, Manufactured by Fujitsu, SDIP64
235      MB89372  : Fujitsu Multi-Protocol Controller (SDIP64)
236236      epr-12587: 27C256 EPROM
237237
238238
trunk/src/mame/drivers/segaybd.c
r31828r31829
2424    Known bugs:
2525        * still seems to be some glitchiness in the games in general
2626
27****************************************************************************
28
29Network Board (used for Power Drift)
30-------------
31
32Board: 834-6740
33|-------------| |-| |--------|---|-|
34| _ 315-5336  RX  TX          CNC  |
35||C|                               |
36||N| MB8421 EPR-12028  MB89372P-SH |
37||A|          5563                 |
38||_|                      315-5337 |
39|    SW1     LED   16MHz     Z80E  |
40|----------------------------------|
41
42Notes:
43      PALs      : 315-5337, 315-5336, both PAL16L8
44      Z80 clock : 8.000MHz [16/2]
45      5563      : Toshiba TC5563APL-12L 8k x 8 SRAM
46      MB8421    : Fujitsu 2k x 8 Dual-Port SRAM (SDIP52)
47      MB89372   : Fujitsu Multi-Protocol Controller
48      EPR-12028 : 27C256 EPROM
49      CNA       : 50 Pin connector to main board
50      CNC       : 10 pin connector
51      SW1       : Dipswitch block, 8 switches
52
53MB89372 - Uses 3 serial data transfer protocols: ASYNC, COP & BOP. Has a built
54          in DMA controller and Interrupt controller to handle interrupts
55          from the serial interface unit (SIU) & DMA controller (DMAC)
56
2757***************************************************************************/
2858
2959#include "emu.h"
r31828r31829
13411371   MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
13421372MACHINE_CONFIG_END
13431373
1344// LINK PCB is 834-6740, similar to the one for Super Monaco GP
1345// has 1x 8 switch dip bank, Z80E CPU, ribbon connector? (to main board?), RX/TX ports, 16Mhz OSC,
1346// MB8421 DPSRAM, MB89372 (UART?)
1347// irq at 0x28 is from mb8421, and irq at 0x38 probably from uart?
1374
1375// irq at 0x28 is from MB8421, and irq at 0x38 probably from MB89372?
13481376static MACHINE_CONFIG_DERIVED( yboard_link, yboard )
13491377
13501378   // basic machine hardware
13511379   MCFG_CPU_MODIFY("maincpu")
13521380   MCFG_CPU_PROGRAM_MAP(main_map_link)
13531381
1354   MCFG_CPU_ADD("linkcpu", Z80, XTAL_16MHz/2 ) // 8 mhz?
1382   MCFG_CPU_ADD("linkcpu", Z80, XTAL_16MHz/2 ) // 8 Mhz
13551383   MCFG_CPU_PROGRAM_MAP(link_map)
13561384   MCFG_CPU_IO_MAP(link_portmap)
13571385
r31828r31829
20912119   ROM_LOAD( "epr-11898.ic4", 0x000000, 0x20000, CRC(5d19d767) SHA1(d335cd3ef57c75e388df04b04fc3e2881a3902cf) )
20922120ROM_END
20932121
2094// this was just 6 loose program roms + 4 sprite roms + the link PCBs, other roms could be incorrect
2122//*************************************************************************************************************************
2123//  Power Drift, Sega Y-board Link version
2124//  Sega Game ID:  833-6697
2125//
2126//  This was just 6 loose program roms + 4 sprite roms + the link PCBs, other roms could be incorrect
2127//
20952128ROM_START(pdriftl)
20962129   ROM_REGION(0x080000, "maincpu", 0) // M
20972130   ROM_LOAD16_BYTE("epr-12107a.25", 0x000000, 0x20000, CRC(0acaed3c) SHA1(0a3d86346b7a75a53b07311c095a879a22048590))

Previous 199869 Revisions Next


© 1997-2024 The MAME Team