mirror of
https://github.com/holub/mame
synced 2025-04-16 13:34:55 +03:00
another skeleton mechanical driver free to a good home (nw)
This commit is contained in:
parent
5c86256b9a
commit
40f3dcf96a
@ -4498,6 +4498,7 @@ files {
|
||||
MAME_DIR .. "src/mame/drivers/trvquest.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/ttchamp.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/tugboat.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/ice_tbd.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/umipoker.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/unkfr.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/unkhorse.cpp",
|
||||
|
@ -32518,3 +32518,5 @@ dumpump
|
||||
wackygtr // Wacky Gator
|
||||
|
||||
amerihok
|
||||
|
||||
ice_tbd // ICE - Turbo Drive
|
||||
|
69
src/mame/drivers/ice_tbd.cpp
Normal file
69
src/mame/drivers/ice_tbd.cpp
Normal file
@ -0,0 +1,69 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:David Haywood
|
||||
/*
|
||||
|
||||
Turbo Drive by Innovative Creations in Entertainment (ICE)
|
||||
|
||||
http://www.arcade-museum.com/game_detail.php?game_id=10658
|
||||
|
||||
|
||||
Slot car type race game, coin operated.
|
||||
|
||||
Device is a 27c128
|
||||
|
||||
--
|
||||
not sure what the actual inputs / outputs would be on this, maybe just track position / lap sensors?
|
||||
|
||||
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
|
||||
class ice_tbd_state : public driver_device
|
||||
{
|
||||
public:
|
||||
ice_tbd_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag)
|
||||
,m_maincpu(*this, "maincpu")
|
||||
{ }
|
||||
|
||||
virtual void machine_start();
|
||||
virtual void machine_reset();
|
||||
required_device<cpu_device> m_maincpu;
|
||||
};
|
||||
|
||||
|
||||
|
||||
static ADDRESS_MAP_START( ice_tbd_map, AS_PROGRAM, 8, ice_tbd_state )
|
||||
AM_RANGE(0x0000, 0x3fff) AM_ROM
|
||||
ADDRESS_MAP_END
|
||||
|
||||
|
||||
static INPUT_PORTS_START( ice_tbd )
|
||||
INPUT_PORTS_END
|
||||
|
||||
void ice_tbd_state::machine_start()
|
||||
{
|
||||
}
|
||||
|
||||
void ice_tbd_state::machine_reset()
|
||||
{
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( ice_tbd, ice_tbd_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", Z80,8000000) /* ? MHz */
|
||||
MCFG_CPU_PROGRAM_MAP(ice_tbd_map)
|
||||
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
ROM_START( ice_tbd )
|
||||
ROM_REGION( 0x10000, "maincpu", 0 )
|
||||
ROM_LOAD( "TURBO-DR.IVE", 0x0000, 0x4000, CRC(d7c79ac4) SHA1(a01d93411e604e36a3ced58063f2ab81e431b82a) )
|
||||
ROM_END
|
||||
|
||||
|
||||
GAME( 1988, ice_tbd, 0, ice_tbd, ice_tbd, driver_device, 0, ROT0, "Innovative Creations in Entertainment", "Turbo Drive (ICE)", MACHINE_IS_SKELETON_MECHANICAL )
|
Loading…
Reference in New Issue
Block a user