mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
daryde.cpp: Add "Panther Darts" PCB layout (nw)
This commit is contained in:
parent
3a06c9e474
commit
cd25024de1
@ -44,13 +44,53 @@ INPUT_PORTS_END
|
||||
|
||||
void daryde_state::pandart(machine_config &config)
|
||||
{
|
||||
cpu_device &maincpu(Z180(config, "maincpu", 12000000)); // XTAL not readable
|
||||
cpu_device &maincpu(Z180(config, "maincpu", XTAL(18'432'000)));
|
||||
maincpu.set_addrmap(AS_PROGRAM, &daryde_state::mem_map);
|
||||
maincpu.set_addrmap(AS_IO, &daryde_state::io_map);
|
||||
|
||||
MK48T08(config, "timekpr");
|
||||
}
|
||||
|
||||
/* Daryde Panther Darts PCB
|
||||
____________________________________________________________________________
|
||||
| ____________________ _____________________ _______ _______ |
|
||||
| ||||CN8 (16 pins)||| ||||CN5 (16 pins)|||| ||CN6|| |CN15|| ___ |
|
||||
| ___ ___________ ___________ __________ |__| |
|
||||
| |CN3 |_74HC273N_| |_74HC273N_| |_ULN2803A| |__| |
|
||||
| |__| ___________ ___________ __________ |C_| |
|
||||
| __ |_74HC273N_| |_74HC273N_| |_ULN2803A| |N_| |
|
||||
| |CN7 ___________ ___________ __________ |4_| |
|
||||
| ____ |_74HC273N_| |_74HC273N_| |_ULN2803A| |__| |
|
||||
| |CN12| _________ ___________ |__| |
|
||||
| |DB9 | _________ 74HC138AN| |_74HC273N_| |
|
||||
| | | |MAX232N_| _________ ___________ ___ |
|
||||
| |____| ___________ CD4051BCN| |_74HC244N_| |__| |
|
||||
| ___ |PALCE16V8H| _______________ |__| |
|
||||
| |CN14 ______________ | | ___________ |C_| |
|
||||
| |__| | | |M48T08-150PCI | |_74HC244N_| |N_| |
|
||||
| ___ | CPU (IC6) | |______________| |9_| |
|
||||
| |CN11 | | _______________ ___________ ___ |__| |
|
||||
| | | | | |AM27C040 (IC5)| |_74HC244N_| |H606016 |__| |
|
||||
| | | |____________| |______________| |__| |
|
||||
| |__| _____ _________ _________ ___________ ____ |
|
||||
| |XTAL| |||CN2||| |||CN1||| |||CN13|||| |CN10 |
|
||||
|___________________________________________________________________________|
|
||||
|
||||
Xtal = 18.432 MHz
|
||||
|
||||
CN1 = 6 pins
|
||||
CN2 = 8 pins
|
||||
CN4 = 20 pins
|
||||
CN5 = 16 pins
|
||||
CN6 = 6 pins
|
||||
CN8 = 16 pins
|
||||
CN9 = 26 pins
|
||||
CN10 = 4 pins
|
||||
CN11 = 10 pins
|
||||
CN12 = 9 pins (DB9)
|
||||
CN13 = 16 pins, but no connector, 2200μF25V capacitor between last pins
|
||||
CN14 = 6 pins
|
||||
CN15 = 5 pins */
|
||||
ROM_START(pandart)
|
||||
ROM_REGION(0x80000, "program", 0)
|
||||
ROM_LOAD("27c040.ic5", 0x00000, 0x80000, CRC(b1bd5c14) SHA1(7164dcaebf0f23f5330b225e44ee87d9a8c79f4f))
|
||||
|
Loading…
Reference in New Issue
Block a user