mirror of
https://github.com/holub/mame
synced 2025-06-06 12:53:46 +03:00
New Not Working machine : Motorola AMPS Car Phone
This commit is contained in:
parent
94898953b2
commit
4da8f719ef
40
src/mame/drivers/ampscarp.cpp
Normal file
40
src/mame/drivers/ampscarp.cpp
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:
|
||||||
|
/***********************************************************************************************************************************
|
||||||
|
|
||||||
|
2017-10-29 Skeleton
|
||||||
|
|
||||||
|
Motorola AMPS Car Phone.
|
||||||
|
|
||||||
|
************************************************************************************************************************************/
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
|
//#include "cpu/mcs51/mcs51.h"
|
||||||
|
|
||||||
|
class ampscarp_state : public driver_device
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ampscarp_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: driver_device(mconfig, type, tag)
|
||||||
|
// , maincpu(*this, "maincpu")
|
||||||
|
{ }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
// required_device<i80c52_device> maincpu;
|
||||||
|
};
|
||||||
|
|
||||||
|
static INPUT_PORTS_START( ampscarp )
|
||||||
|
INPUT_PORTS_END
|
||||||
|
|
||||||
|
//static ADDRESS_MAP_START( prg_map, AS_PROGRAM, 8, ampscarp_state )
|
||||||
|
//ADDRESS_MAP_END
|
||||||
|
|
||||||
|
static MACHINE_CONFIG_START( ampscarp )
|
||||||
|
MACHINE_CONFIG_END
|
||||||
|
|
||||||
|
ROM_START( ampscarp )
|
||||||
|
ROM_REGION( 0x20000, "maincpu", 0 )
|
||||||
|
ROM_LOAD( "motorola_amps_car_phone_dump.bin", 0x0000, 0x20000, CRC(677ec85e) SHA1(219611b6c4b16461705e2df61d79a0f7ac8f529f) )
|
||||||
|
ROM_END
|
||||||
|
|
||||||
|
COMP( 1998, ampscarp, 0, 0, ampscarp, ampscarp, ampscarp_state, 0, "Motorola", "AMPS Car Phone", MACHINE_IS_SKELETON )
|
Loading…
Reference in New Issue
Block a user