summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bfm_sc5.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-08-02 08:08:10 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-08-02 08:08:10 +0000
commit573cf99b4d530e0054603deb96c034165d673b5c (patch)
treed1d00f43224e2939d2e734e91b5cdfdefa0a9768 /src/mame/drivers/bfm_sc5.c
parentaf229aebc248e609885b20766b5f7aafb14b869b (diff)
Scoripion 2 sets added, and some skeletons without sets by Haze (no whatsnew)
Diffstat (limited to 'src/mame/drivers/bfm_sc5.c')
-rw-r--r--src/mame/drivers/bfm_sc5.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/mame/drivers/bfm_sc5.c b/src/mame/drivers/bfm_sc5.c
new file mode 100644
index 00000000000..da9657ac620
--- /dev/null
+++ b/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