New Not working machine : Convergent Mightyframe

This commit is contained in:
Robbbert 2017-11-03 21:57:24 +11:00
parent f7e6a69b7a
commit 6f63019a25
4 changed files with 50 additions and 0 deletions

View File

@ -3518,6 +3518,7 @@ files {
MAME_DIR .. "src/mame/drivers/micro20.cpp", MAME_DIR .. "src/mame/drivers/micro20.cpp",
MAME_DIR .. "src/mame/drivers/micronic.cpp", MAME_DIR .. "src/mame/drivers/micronic.cpp",
MAME_DIR .. "src/mame/includes/micronic.h", MAME_DIR .. "src/mame/includes/micronic.h",
MAME_DIR .. "src/mame/drivers/mightyframe.cpp",
MAME_DIR .. "src/mame/drivers/mini2440.cpp", MAME_DIR .. "src/mame/drivers/mini2440.cpp",
MAME_DIR .. "src/mame/drivers/miniframe.cpp", MAME_DIR .. "src/mame/drivers/miniframe.cpp",
MAME_DIR .. "src/mame/drivers/minitel_2_rpic.cpp", MAME_DIR .. "src/mame/drivers/minitel_2_rpic.cpp",

View File

@ -0,0 +1,45 @@
// license:BSD-3-Clause
// copyright-holders:
/***********************************************************************************************************************************
2017-11-03 Skeleton
Convergent Technologies 68k Mightyframe S80
Chips: CPU is a square MC68020RC12B. Also, 3x Z80SCC and 2 undumped proms labelled "7201087B"(@15D) and "7201089B"(@15F)
The only photo shows just a part of the board, the only crystal is a tiny tubular one next to a OKI M58321 chip.
Manuals: http://mightyframe.blogspot.com.au/p/manuals.html
************************************************************************************************************************************/
#include "emu.h"
//#include "cpu/mcs51/mcs51.h"
class mightyframe_state : public driver_device
{
public:
mightyframe_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
// , m_maincpu(*this, "maincpu")
{ }
protected:
// required_device<i80c52_device> m_maincpu;
};
static INPUT_PORTS_START( mightyframe )
INPUT_PORTS_END
//static ADDRESS_MAP_START( prg_map, AS_PROGRAM, 8, mightyframe_state )
//ADDRESS_MAP_END
static MACHINE_CONFIG_START( mightyframe )
MACHINE_CONFIG_END
ROM_START( mightyframe )
ROM_REGION( 0x8000, "maincpu", 0 )
ROM_LOAD( "72-01231.26c", 0x0000, 0x8000, CRC(41faf884) SHA1(d0c6f35394b4006bbe9a3f81b658ded37f41d86f) )
ROM_END
COMP( 1985?, mightyframe, 0, 0, mightyframe, mightyframe, mightyframe_state, 0, "Convergent Technologies", "Mightyframe", MACHINE_IS_SKELETON )

View File

@ -20878,6 +20878,9 @@ mk4b // (c) 1997 Midway (v1.0)
thegrid // (c) 2001 Midway (v1.2) Latest offical release thegrid // (c) 2001 Midway (v1.2) Latest offical release
thegrida // (c) 2001 Midway (v1.1) thegrida // (c) 2001 Midway (v1.1)
@source:mightyframe.cpp
mightyframe // Convergent
@source:mikie.cpp @source:mikie.cpp
mikie // GX469 (c) 1984 mikie // GX469 (c) 1984
mikiehs // GX469 (c) 1984 mikiehs // GX469 (c) 1984

View File

@ -376,6 +376,7 @@ microvsn.cpp
mikro80.cpp mikro80.cpp
mikromik.cpp mikromik.cpp
mikrosha.cpp mikrosha.cpp
mightyframe.cpp
mini2440.cpp mini2440.cpp
minicom.cpp minicom.cpp
miniforce.cpp miniforce.cpp