1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// 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/m68000/m68000.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")
{ }
void mightyframe(machine_config &config);
private:
// required_device<cpu_device> m_maincpu;
};
static ADDRESS_MAP_START( mem_map, AS_PROGRAM, 16, mightyframe_state )
AM_RANGE(0x000000, 0x007fff) AM_ROM
ADDRESS_MAP_END
static INPUT_PORTS_START( mightyframe )
INPUT_PORTS_END
MACHINE_CONFIG_START(mightyframe_state::mightyframe)
MCFG_CPU_ADD("maincpu", M68000, XTAL(16'000'000)) // no idea of clock
MCFG_CPU_PROGRAM_MAP(mem_map)
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 )
|