summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/mame/drivers/bfm_sc5.c
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/mame/drivers/bfm_sc5.c')
-rw-r--r--trunk/src/mame/drivers/bfm_sc5.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/trunk/src/mame/drivers/bfm_sc5.c b/trunk/src/mame/drivers/bfm_sc5.c
new file mode 100644
index 00000000000..5f5c2613e1d
--- /dev/null
+++ b/trunk/src/mame/drivers/bfm_sc5.c
@@ -0,0 +1,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