summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bfm_sc5.c
blob: 5f5c2613e1df142771f2e18251922994fc9b2b0a (plain) (blame)
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
/*

    Scorpion 5

    Skeleton Driver - For note keeping, no sets currently supported pending a better
     understanding of the system.

    Several sets have large roms, containing strings which mention Compact Flash cards
     - Are these CF card dumps
     - Should *All* games have them?
     - Do the Program roms just override parts of this, or do they work together?


*/

#include "emu.h"
#include "cpu/m68000/m68000.h"

#if 0
class sc5_state : public driver_device
{
public:
	sc5_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

};


static ADDRESS_MAP_START( sc5_map, AS_PROGRAM, 32 )
	AM_RANGE(0x000000, 0x2fffff) AM_ROM
ADDRESS_MAP_END

static INPUT_PORTS_START(  sc5 )
INPUT_PORTS_END

static MACHINE_CONFIG_START( sc5, sc5_state )
	MCFG_CPU_ADD("maincpu", M68020, 16000000)	 // 68340?
	MCFG_CPU_PROGRAM_MAP(sc5_map)

	MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
	/* unknown sound */
MACHINE_CONFIG_END
#endif