diff --git a/src/mame/drivers/microdar.cpp b/src/mame/drivers/microdar.cpp index b290dc6d996..8359c237f6f 100644 --- a/src/mame/drivers/microdar.cpp +++ b/src/mame/drivers/microdar.cpp @@ -59,16 +59,17 @@ IC10 = Hitachi HD74HC244P ************************************************************************** Known machines using this hardware: -_______________________________________________________________________________________________________________________________________________ -|Dumped | Name | Manufacturer | Notes | Machine type | -|-------|------------|--------------|---------------------------------------------------------------------|------------------------------------| -| NO | Sagitario | CIC Play | CPU silkscreened "REF 0034 9115S", without manufacturer logos | Darts | -| YES | Unknown | Bifuca | Added as "microdar". Standard Microdar SPD with Philips REF34VA | Darts | -| NO | Party Darts| Compumatic | More info: http://www.recreativas.org/party-darts-4906-compumatic | Darts | -| NO | Diamant | Unknown | Newer PCB with Philips REF34VA and additional Compumatic custom ICs | Darts | -| NO | Tiger Dart | Unknown | Standard Microdar SPD with Philips REF34VA | Darts | -| YES | Far West | Compumatic | Standard Microdar SPD with Philips REF34VA | Electromechanical shooting machine | -|_______|____________|______________|_____________________________________________________________________|____________________________________| +_______________________________________________________________________________________________________________________________________ +|Dumped | Name | Manufacturer | Notes | Machine type | +|-------|------------|--------------|---------------------------------------------------------------------|----------------------------| +| NO | Sagitario | CIC Play | CPU silkscreened "REF 0034 9115S", without manufacturer logos | Darts | +| YES | Unknown | Bifuca | Added as "microdar". Standard Microdar SPD with Philips REF34VA | Darts | +| NO | Party Darts| Compumatic | More info: http://www.recreativas.org/party-darts-4906-compumatic | Darts | +| NO | Diamant | Unknown | Newer PCB with Philips REF34VA and additional Compumatic custom ICs | Darts | +| NO | Tiger Dart | Unknown | Standard Microdar SPD with Philips REF34VA | Darts | +| YES | Far West | Compumatic | Standard Microdar SPD with Philips REF34VA | Electromechanical shooting | +| YES | Unknown | Compumatic | Compumatic ProSPDP-V3 PCB (Philips REF34VA + REF0096 + REF8032) | Darts | +|_______|____________|______________|_____________________________________________________________________|____________________________| There's a later revision of the Compumatic Microdar PCB (V5), smaller, with a standard Atmel AT89S51 instead of the REF34 CPU. @@ -91,6 +92,7 @@ public: } void microdar(machine_config &config); + void prospdp(machine_config &config); private: void prog_map(address_map &map); @@ -120,99 +122,107 @@ void microdar_state::microdar(machine_config &config) m_maincpu->set_addrmap(AS_IO, µdar_state::ext_map); NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); // GM76C88ALK-15 + battery - - I2C_24C16(config, m_eeprom); // 24LC16B + I2C_24C16(config, m_eeprom); // Code also references some sort of serial RTC? } +void microdar_state::prospdp(machine_config &config) +{ + microdar(config); + m_maincpu->set_clock(24_MHz_XTAL); +} + +#define PHILIPS_REF34VA \ + ROM_REGION(0x1000, "maincpu", ROMREGION_ERASE00) \ + ROM_LOAD("ref34va.ic1", 0x0000, 0x1000, NO_DUMP) \ + ROM_FILL(0x0000, 1, 0x02) /* temporary LJMP to external init code */ \ + ROM_FILL(0x0001, 1, 0x10) \ + ROM_FILL(0x0002, 1, 0x1b) \ + ROM_FILL(0x000b, 1, 0x02) /* temporary LJMP to interrupt handler */ \ + ROM_FILL(0x000c, 1, 0x10) \ + ROM_FILL(0x000d, 1, 0x15) \ + ROM_FILL(0x001b, 1, 0x02) /* temporary LJMP to interrupt handler */ \ + ROM_FILL(0x001c, 1, 0x10) \ + ROM_FILL(0x001d, 1, 0x18) \ + ROM_FILL(0x0058, 1, 0x32) /* RETI stubs */ \ + ROM_FILL(0x00af, 1, 0x32) \ + ROM_FILL(0x00c9, 1, 0x02) /* temporary LJMP to end of interrupt handler */ \ + ROM_FILL(0x00ca, 1, 0x12) \ + ROM_FILL(0x00cb, 1, 0xd1) \ + ROM_FILL(0x0135, 1, 0x22) /* RET stubs */ \ + ROM_FILL(0x0163, 1, 0x22) \ + ROM_FILL(0x0185, 1, 0x22) \ + ROM_FILL(0x01cf, 1, 0x22) \ + ROM_FILL(0x02de, 1, 0x22) \ + ROM_FILL(0x02fa, 1, 0x22) \ + ROM_FILL(0x0308, 1, 0x22) \ + ROM_FILL(0x0313, 1, 0x22) \ + ROM_FILL(0x037d, 1, 0x22) \ + ROM_FILL(0x03be, 1, 0x22) \ + ROM_FILL(0x0496, 1, 0x22) \ + ROM_FILL(0x04ce, 1, 0x22) \ + ROM_FILL(0x0514, 1, 0x22) \ + ROM_FILL(0x0520, 1, 0x22) \ + ROM_FILL(0x0550, 1, 0x22) \ + ROM_FILL(0x0574, 1, 0x22) \ + ROM_FILL(0x05b4, 1, 0x22) \ + ROM_FILL(0x05bb, 1, 0x22) \ + ROM_FILL(0x05ca, 1, 0x22) \ + ROM_FILL(0x05d8, 1, 0x22) \ + ROM_FILL(0x0605, 1, 0x22) \ + ROM_FILL(0x0638, 1, 0x22) \ + ROM_FILL(0x068a, 1, 0x22) \ + ROM_FILL(0x06a2, 1, 0x22) \ + ROM_FILL(0x06bd, 1, 0x22) \ + ROM_FILL(0x06db, 1, 0x22) \ + ROM_FILL(0x0708, 1, 0x22) \ + ROM_FILL(0x0715, 1, 0x22) \ + ROM_FILL(0x072d, 1, 0x22) \ + ROM_FILL(0x0744, 1, 0x22) \ + ROM_FILL(0x0751, 1, 0x22) \ + ROM_FILL(0x0767, 1, 0x22) \ + ROM_FILL(0x0772, 1, 0x22) \ + ROM_FILL(0x077d, 1, 0x22) \ + ROM_FILL(0x07a4, 1, 0x22) \ + ROM_FILL(0x07c2, 1, 0x22) \ + ROM_FILL(0x0802, 1, 0x22) \ + ROM_FILL(0x0836, 1, 0x22) \ + ROM_FILL(0x087d, 1, 0x22) \ + ROM_FILL(0x0893, 1, 0x22) \ + ROM_FILL(0x0930, 1, 0x22) \ + ROM_FILL(0x094a, 1, 0x22) \ + ROM_FILL(0x095a, 1, 0x22) \ + ROM_FILL(0x096a, 1, 0x22) \ + ROM_FILL(0x097b, 1, 0x22) \ + ROM_FILL(0x098f, 1, 0x22) \ + ROM_FILL(0x09a3, 1, 0x22) \ + ROM_FILL(0x09c0, 1, 0x22) \ + ROM_FILL(0x0a21, 1, 0x22) \ + ROM_FILL(0x0a54, 1, 0x22) \ + ROM_FILL(0x0a63, 1, 0x22) \ + ROM_FILL(0x0a73, 1, 0x22) \ + ROM_FILL(0x0a90, 1, 0x22) \ + ROM_FILL(0x0ae8, 1, 0x22) \ + ROM_FILL(0x0abf, 1, 0x22) \ + ROM_FILL(0x0ac7, 1, 0x22) \ + ROM_FILL(0x0b11, 1, 0x22) \ + ROM_FILL(0x0b7f, 1, 0x22) \ + ROM_FILL(0x0bf1, 1, 0x22) \ + ROM_FILL(0x0bf6, 1, 0x22) \ + ROM_FILL(0x0c4a, 1, 0x22) \ + ROM_FILL(0x0c59, 1, 0x22) \ + ROM_FILL(0x0c64, 1, 0x22) \ + ROM_FILL(0x0c99, 1, 0x22) \ + ROM_FILL(0x0ca8, 1, 0x22) \ + ROM_FILL(0x0cbd, 1, 0x22) \ + ROM_FILL(0x0dac, 1, 0x22) \ + ROM_FILL(0x0dca, 1, 0x22) \ + ROM_FILL(0x0e6a, 1, 0x22) ROM_START(microdar) - ROM_REGION(0x1000, "maincpu", ROMREGION_ERASE00) - ROM_LOAD("ref34va_k7v5534_9818h-.ic1", 0x0000, 0x1000, NO_DUMP) - ROM_FILL(0x0000, 1, 0x02) // temporary LJMP to external init code - ROM_FILL(0x0001, 1, 0x10) - ROM_FILL(0x0002, 1, 0x1b) - ROM_FILL(0x000b, 1, 0x02) // temporary LJMP to interrupt handler - ROM_FILL(0x000c, 1, 0x10) - ROM_FILL(0x000d, 1, 0x15) - ROM_FILL(0x001b, 1, 0x02) // temporary LJMP to interrupt handler - ROM_FILL(0x001c, 1, 0x10) - ROM_FILL(0x001d, 1, 0x18) - ROM_FILL(0x0058, 1, 0x32) // RETI stubs - ROM_FILL(0x00af, 1, 0x32) - ROM_FILL(0x00c9, 1, 0x02) // temporary LJMP to end of interrupt handler - ROM_FILL(0x00ca, 1, 0x12) - ROM_FILL(0x00cb, 1, 0xd1) - ROM_FILL(0x0135, 1, 0x22) // RET stubs - ROM_FILL(0x0163, 1, 0x22) - ROM_FILL(0x0185, 1, 0x22) - ROM_FILL(0x01cf, 1, 0x22) - ROM_FILL(0x02de, 1, 0x22) - ROM_FILL(0x02fa, 1, 0x22) - ROM_FILL(0x0308, 1, 0x22) - ROM_FILL(0x0313, 1, 0x22) - ROM_FILL(0x037d, 1, 0x22) - ROM_FILL(0x03be, 1, 0x22) - ROM_FILL(0x0496, 1, 0x22) - ROM_FILL(0x04ce, 1, 0x22) - ROM_FILL(0x0514, 1, 0x22) - ROM_FILL(0x0520, 1, 0x22) - ROM_FILL(0x0550, 1, 0x22) - ROM_FILL(0x0574, 1, 0x22) - ROM_FILL(0x05b4, 1, 0x22) - ROM_FILL(0x05bb, 1, 0x22) - ROM_FILL(0x05ca, 1, 0x22) - ROM_FILL(0x05d8, 1, 0x22) - ROM_FILL(0x0605, 1, 0x22) - ROM_FILL(0x0638, 1, 0x22) - ROM_FILL(0x068a, 1, 0x22) - ROM_FILL(0x06a2, 1, 0x22) - ROM_FILL(0x06bd, 1, 0x22) - ROM_FILL(0x06db, 1, 0x22) - ROM_FILL(0x0708, 1, 0x22) - ROM_FILL(0x0715, 1, 0x22) - ROM_FILL(0x072d, 1, 0x22) - ROM_FILL(0x0744, 1, 0x22) - ROM_FILL(0x0751, 1, 0x22) - ROM_FILL(0x0767, 1, 0x22) - ROM_FILL(0x0772, 1, 0x22) - ROM_FILL(0x077d, 1, 0x22) - ROM_FILL(0x07a4, 1, 0x22) - ROM_FILL(0x07c2, 1, 0x22) - ROM_FILL(0x0802, 1, 0x22) - ROM_FILL(0x0836, 1, 0x22) - ROM_FILL(0x087d, 1, 0x22) - ROM_FILL(0x0893, 1, 0x22) - ROM_FILL(0x0930, 1, 0x22) - ROM_FILL(0x094a, 1, 0x22) - ROM_FILL(0x095a, 1, 0x22) - ROM_FILL(0x096a, 1, 0x22) - ROM_FILL(0x097b, 1, 0x22) - ROM_FILL(0x098f, 1, 0x22) - ROM_FILL(0x09a3, 1, 0x22) - ROM_FILL(0x09c0, 1, 0x22) - ROM_FILL(0x0a21, 1, 0x22) - ROM_FILL(0x0a54, 1, 0x22) - ROM_FILL(0x0a63, 1, 0x22) - ROM_FILL(0x0a73, 1, 0x22) - ROM_FILL(0x0a90, 1, 0x22) - ROM_FILL(0x0ae8, 1, 0x22) - ROM_FILL(0x0abf, 1, 0x22) - ROM_FILL(0x0ac7, 1, 0x22) - ROM_FILL(0x0b11, 1, 0x22) - ROM_FILL(0x0b7f, 1, 0x22) - ROM_FILL(0x0bf1, 1, 0x22) - ROM_FILL(0x0bf6, 1, 0x22) - ROM_FILL(0x0c4a, 1, 0x22) - ROM_FILL(0x0c59, 1, 0x22) - ROM_FILL(0x0c64, 1, 0x22) - ROM_FILL(0x0c99, 1, 0x22) - ROM_FILL(0x0ca8, 1, 0x22) - ROM_FILL(0x0cbd, 1, 0x22) - ROM_FILL(0x0dac, 1, 0x22) - ROM_FILL(0x0dca, 1, 0x22) - ROM_FILL(0x0e6a, 1, 0x22) + // REF34VA K7V5534 9818h + PHILIPS_REF34VA ROM_REGION(0x20000, "program", 0) ROM_LOAD("compumatic_727.ic3", 0x00000, 0x20000, CRC(ccf973b6) SHA1(ab67e466849b3bbd8f24be041c979c3f833a32a8)) @@ -222,92 +232,8 @@ ROM_START(microdar) ROM_END ROM_START(cfarwest) - ROM_REGION(0x1000, "maincpu", ROMREGION_ERASE00) - ROM_LOAD("ref34va_k8v2873_phr9920_0.ic12", 0x0000, 0x1000, NO_DUMP) - // Fills copied from 'microdar' without checking - ROM_FILL(0x0000, 1, 0x02) // temporary LJMP to external init code - ROM_FILL(0x0001, 1, 0x10) - ROM_FILL(0x0002, 1, 0x1b) - ROM_FILL(0x000b, 1, 0x02) // temporary LJMP to interrupt handler - ROM_FILL(0x000c, 1, 0x10) - ROM_FILL(0x000d, 1, 0x15) - ROM_FILL(0x001b, 1, 0x02) // temporary LJMP to interrupt handler - ROM_FILL(0x001c, 1, 0x10) - ROM_FILL(0x001d, 1, 0x18) - ROM_FILL(0x0058, 1, 0x32) // RETI stubs - ROM_FILL(0x00af, 1, 0x32) - ROM_FILL(0x00c9, 1, 0x02) // temporary LJMP to end of interrupt handler - ROM_FILL(0x00ca, 1, 0x12) - ROM_FILL(0x00cb, 1, 0xd1) - ROM_FILL(0x0135, 1, 0x22) // RET stubs - ROM_FILL(0x0163, 1, 0x22) - ROM_FILL(0x0185, 1, 0x22) - ROM_FILL(0x01cf, 1, 0x22) - ROM_FILL(0x02de, 1, 0x22) - ROM_FILL(0x02fa, 1, 0x22) - ROM_FILL(0x0308, 1, 0x22) - ROM_FILL(0x0313, 1, 0x22) - ROM_FILL(0x037d, 1, 0x22) - ROM_FILL(0x03be, 1, 0x22) - ROM_FILL(0x0496, 1, 0x22) - ROM_FILL(0x04ce, 1, 0x22) - ROM_FILL(0x0514, 1, 0x22) - ROM_FILL(0x0520, 1, 0x22) - ROM_FILL(0x0550, 1, 0x22) - ROM_FILL(0x0574, 1, 0x22) - ROM_FILL(0x05b4, 1, 0x22) - ROM_FILL(0x05bb, 1, 0x22) - ROM_FILL(0x05ca, 1, 0x22) - ROM_FILL(0x05d8, 1, 0x22) - ROM_FILL(0x0605, 1, 0x22) - ROM_FILL(0x0638, 1, 0x22) - ROM_FILL(0x068a, 1, 0x22) - ROM_FILL(0x06a2, 1, 0x22) - ROM_FILL(0x06bd, 1, 0x22) - ROM_FILL(0x06db, 1, 0x22) - ROM_FILL(0x0708, 1, 0x22) - ROM_FILL(0x0715, 1, 0x22) - ROM_FILL(0x072d, 1, 0x22) - ROM_FILL(0x0744, 1, 0x22) - ROM_FILL(0x0751, 1, 0x22) - ROM_FILL(0x0767, 1, 0x22) - ROM_FILL(0x0772, 1, 0x22) - ROM_FILL(0x077d, 1, 0x22) - ROM_FILL(0x07a4, 1, 0x22) - ROM_FILL(0x07c2, 1, 0x22) - ROM_FILL(0x0802, 1, 0x22) - ROM_FILL(0x0836, 1, 0x22) - ROM_FILL(0x087d, 1, 0x22) - ROM_FILL(0x0893, 1, 0x22) - ROM_FILL(0x0930, 1, 0x22) - ROM_FILL(0x094a, 1, 0x22) - ROM_FILL(0x095a, 1, 0x22) - ROM_FILL(0x096a, 1, 0x22) - ROM_FILL(0x097b, 1, 0x22) - ROM_FILL(0x098f, 1, 0x22) - ROM_FILL(0x09a3, 1, 0x22) - ROM_FILL(0x09c0, 1, 0x22) - ROM_FILL(0x0a21, 1, 0x22) - ROM_FILL(0x0a54, 1, 0x22) - ROM_FILL(0x0a63, 1, 0x22) - ROM_FILL(0x0a73, 1, 0x22) - ROM_FILL(0x0a90, 1, 0x22) - ROM_FILL(0x0ae8, 1, 0x22) - ROM_FILL(0x0abf, 1, 0x22) - ROM_FILL(0x0ac7, 1, 0x22) - ROM_FILL(0x0b11, 1, 0x22) - ROM_FILL(0x0b7f, 1, 0x22) - ROM_FILL(0x0bf1, 1, 0x22) - ROM_FILL(0x0bf6, 1, 0x22) - ROM_FILL(0x0c4a, 1, 0x22) - ROM_FILL(0x0c59, 1, 0x22) - ROM_FILL(0x0c64, 1, 0x22) - ROM_FILL(0x0c99, 1, 0x22) - ROM_FILL(0x0ca8, 1, 0x22) - ROM_FILL(0x0cbd, 1, 0x22) - ROM_FILL(0x0dac, 1, 0x22) - ROM_FILL(0x0dca, 1, 0x22) - ROM_FILL(0x0e6a, 1, 0x22) + // REF34VA K8V2873 Phr9920 0 + PHILIPS_REF34VA ROM_REGION(0x20000, "program", 0) ROM_LOAD("farwest_pistola.ic3", 0x00000, 0x20000, CRC(ad68a0e8) SHA1(157a6a84f31e05d289e2fc67099fcff2887a84b9)) @@ -315,5 +241,65 @@ ROM_START(cfarwest) // No EEPROM on this PCB ROM_END +/* Compumatic ProSPDP-V3 PCB + ____________________________________________________________________________________________________ +__|_ ________ ___ ___ ___ __________ ____________ ________ __________ ____ ________ __________ | +| ||_CN105_| 110 123 119 |__CN125_| |__CN124___| |_CN121| |__CN112_|CN127 |_CN128| |__CN103_| ___ | +| C | _______ __________ : |C || +| N | |CN116| |__CN115_| BATTERY 3.6V |N || +| 1 | ______ ______ ______ ______ |1 || +| 1 | CD4514BCWM MM74HC MM74HC CD4514BCWM ______ ___________ |0 || +| 3 | ___________ _____ _____ _____________ ______ MM74HC |COMPUMATIC| |6 || +| | |UDN2981A_| 74HC00D 74HC00D : GM76C88ALK-15 MM74HC ______ | REF0096 |Xtal__|| +| | ___________ ______ _______________ ___ ______ |HC367 |__________| |C || +| |: |TD62683AP| MM74HC | 28SF040A | 24C16N TLC77051P Xtal 16.000 |N || +| |: ___________ |_____________| __________ ____ |1 || +| |: |TD62683AP| _____ _________________ ATF16V8B-15PC LM358 |0 || +| |: ___________ |REF | |PHILIPS REF34VA| Xtal _________ TEST |9 || +| | |TD62683AP| |8032| ____ |_______________| 24.000 |ULN2803A| SWITCH |__|| +|___| |____| CN122 CN102| + | ________ _________ ____ _______________ ___________________ _____ _________ ________ | + | |_CN101_| |__CN111_| CN126 |___CN108______| |_____CN107________|CN114 |_CN118_| |_CN120_| | + |___________________________________________________________________________________________________| + +CN101 = DISPLAY INFO +CN102 = SPEAKER +CN103 = CARD/NOTE +CN105 = 6 pin: GND, RX, TX, TEL, CTL, 12V +CN106 = EXPANSION +CN107 = POWER SUPPLY +CN108 = BUTTON PRO +CN109 = PAN-LED +CN110 = 2 pin: GND / KEY +CN111 = ACCEPTOR +CN112 = TARGET A +CN113 = DISPLAY +CN114 = 2 pin: GND, DISP +CN116 = 3 pin: BI, SS, SM +CN118 = GUN A +CN120 = GUN B +CN122 = ICC (3 pin: T, GND, X) +CN123 = CNT, +12 +CN124 = INTA PRO +CN125 = LED-RING +CN126 = COIN +CN127 = FDD (4 pin: +5, FDD, GND, +12) +CN128 = TROB (5 pin: BUL, OUL, REL, THL, +12) +*/ +ROM_START(prospdp) + // REF34VA K0V951 Phr0038 F + PHILIPS_REF34VA + + ROM_REGION(0x80000, "program", 0) + ROM_LOAD("28sf040a.ic3", 0x00000, 0x80000, CRC(f5727a08) SHA1(f4185afc62c1d1f6cb6c772ea40062ced9b2130a)) + + ROM_REGION(0x800, "eeprom", 0) + ROM_LOAD("24c16n.ic8", 0x000, 0x800, NO_DUMP) + + ROM_REGION(0x117, "plds", 0) + ROM_LOAD("atf16v8b.ic7", 0x000, 0x117, CRC(85e98105) SHA1(9b3389eedd62b3e599559a03e9664ed1e374d60b)) +ROM_END + GAME(199?, microdar, 0, microdar, microdar, microdar_state, empty_init, ROT0, "Compumatic / Bifuca", "Microdar SPD", MACHINE_IS_SKELETON_MECHANICAL) GAME(1997, cfarwest, 0, microdar, microdar, microdar_state, empty_init, ROT0, "Compumatic", "Far West (Compumatic)", MACHINE_IS_SKELETON_MECHANICAL) +GAME(1997, prospdp, 0, prospdp, microdar, microdar_state, empty_init, ROT0, "Compumatic", "ProSPDP", MACHINE_IS_SKELETON_MECHANICAL) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 58c77523991..3bd55b384ac 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -22653,6 +22653,7 @@ dm3270 // @source:microdar.cpp microdar // cfarwest // (c) 1997 Compumatic +prospdp // (c) 1997 Compumatic @source:microdec.cpp md2 //