Previous 199869 Revisions Next

r44547 Thursday 28th January, 2016 at 18:02:59 UTC by hap
mmodular: removed gen32_oc custom MESS overclocked version of gen32_41
[src/mame]mess.lst
[src/mame/drivers]mmodular.cpp

trunk/src/mame/drivers/mmodular.cpp
r253058r253059
1515 Vancouver 68020 12Mhz
1616 Genius 68030 V4.00 33.333 Mhz
1717 Genius 68030 V4.01 33.333 Mhz
18 Genius 68030 V4.01 33.333x2 Mhz (custom MESS overclocked version for higher ELO)
1918 Berlin Pro 68020 24.576 Mhz (not modular board, but otherwise close to milano)
2019 Berlin Pro (London) 68020 24.576 Mhz (not modular board, but otherwise close to milano)
2120 London 68030 V5.00k 33.333 Mhz (probably the Genius 3/4 update ROM)
r253058r253059
998997MACHINE_START_MEMBER(polgar_state,van32)
999998{
1000999// patch LCD delay loop on the 68030 machines until waitstates and/or opcode timings are fixed in MAME core
1001// patches gen32 gen32_41 gen32_oc lond030
1000// patches gen32 gen32_41 lond030
10021001
10031002   UINT8 *rom = memregion("maincpu")->base();
10041003
1005   if(rom[0x870] == 0x0c && rom[0x871] == 0x78) {
1006      if (!strcmp(machine().system().name,"gen32_oc")) {
1007         rom[0x870] = 0x6c;
1008      } else {
1009         rom[0x870] = 0x38;
1010      }
1004   if(rom[0x870] == 0x0c && rom[0x871] == 0x78)
1005      rom[0x870] = 0x38;
10111006   }
10121007}
10131008
r253058r253059
16941689
16951690MACHINE_CONFIG_END
16961691
1697static MACHINE_CONFIG_DERIVED( gen32_oc, gen32 )
1698   MCFG_CPU_MODIFY("maincpu")
1699   MCFG_CPU_CLOCK( XTAL_33_333MHz * 2 )
1700   MCFG_DEVICE_REMOVE("int_timer")
1701   MCFG_TIMER_DRIVER_ADD_PERIODIC("int_timer", polgar_state, timer_update_irq6, attotime::from_hz(500))
1702
1703
1704MACHINE_CONFIG_END
1705
17061692static MACHINE_CONFIG_START( bpl32, polgar_state )
17071693   MCFG_CPU_ADD("maincpu", M68020, XTAL_24_576MHz)
17081694   MCFG_CPU_PROGRAM_MAP(bpl32_mem)
r253058r253059
18511837   ROM_LOAD("gen32_41.bin", 0x00000, 0x40000,CRC(ea9938c0) SHA1(645cf0b5b831b48104ad6cec8d78c63dbb6a588c))
18521838ROM_END
18531839
1854ROM_START( gen32_oc )
1855   ROM_REGION32_BE( 0x40000, "maincpu", 0 )
1856   ROM_LOAD("gen32_41.bin", 0x00000, 0x40000,CRC(ea9938c0) SHA1(645cf0b5b831b48104ad6cec8d78c63dbb6a588c))
1857ROM_END
1858
18591840ROM_START( berlinp )
18601841   ROM_REGION32_BE( 0x40000, "maincpu", 0 )
18611842   ROM_LOAD("berlinp.bin", 0x00000, 0x40000,CRC(82FBAF6E) SHA1(729B7CEF3DFAECC4594A6178FC4BA6015AFA6202))
r253058r253059
19041885   CONS(  1992, risc,     0,       0,      risc,      van16, driver_device,    0,       "Saitek",                    "RISC2500", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK|MACHINE_NOT_WORKING | MACHINE_CLICKABLE_ARTWORK )
19051886   CONS(  1993, gen32,    van16,   0,      gen32,     gen32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto Genius030 V4.00", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK | MACHINE_CLICKABLE_ARTWORK )
19061887   CONS(  1993, gen32_41, van16,   0,      gen32,     gen32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto Genius030 V4.01", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK | MACHINE_CLICKABLE_ARTWORK )
1907   CONS(  1993, gen32_oc, van16,   0,      gen32_oc,  gen32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto Genius030 V4.01OC", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK|MACHINE_UNOFFICIAL | MACHINE_CLICKABLE_ARTWORK )
19081888   CONS(  1994, berlinp,  van16,   0,      bpl32,     bpl32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto Berlin Pro 68020", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK | MACHINE_CLICKABLE_ARTWORK )
19091889   CONS(  1996, bpl32,    van16,   0,      bpl32,     bpl32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto Berlin Pro London Upgrade V5.00", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK | MACHINE_CLICKABLE_ARTWORK )
19101890   CONS(  1996, lond020,  van16,   0,      van32,     van32, driver_device,    0,       "Hegener & Glaser Muenchen", "Mephisto London 68020 32 Bit", MACHINE_SUPPORTS_SAVE|MACHINE_REQUIRES_ARTWORK | MACHINE_CLICKABLE_ARTWORK )
trunk/src/mame/mess.lst
r253058r253059
21872187van32    // 1991 Mephisto Vancouver 68020
21882188gen32    // 1993 Mephisto Genius030 V4.00
21892189gen32_41 // 1993 Mephisto Genius030 V4.01
2190gen32_oc // 1993 Mephisto Genius030 V4.01OC
21912190berlinp  // 1994 Mephisto Berlin Pro 68020
21922191bpl32    // 1996 Mephisto Berlin Pro London Upgrade V5.00
21932192lond020  // 1996 Mephisto London 68020 32 Bit


Previous 199869 Revisions Next


© 1997-2024 The MAME Team