Previous 199869 Revisions Next

r41386 Tuesday 27th October, 2015 at 12:31:19 UTC by David Haywood
a 100% skeleton 'Sega Sawatte' driver, so that the softlist isn't orphaned and -romident can identify items in it etc.
we don't know the CPU or anything else, what is known is in the driver.
[scripts/target/mame]mess.lua
[src/mame]mess.lst
[src/mame/drivers]sega_sawatte.c*

trunk/scripts/target/mame/mess.lua
r249897r249898
21372137   MAME_DIR .. "src/mame/drivers/megadriv.c",
21382138   MAME_DIR .. "src/mame/drivers/saturn.c",
21392139   MAME_DIR .. "src/mame/drivers/segapico.c",
2140   MAME_DIR .. "src/mame/drivers/sega_sawatte.c",
21402141   MAME_DIR .. "src/mame/drivers/segapm.c",
21412142   MAME_DIR .. "src/mame/drivers/sg1000.c",
21422143   MAME_DIR .. "src/mame/drivers/sms.c",
trunk/src/mame/drivers/sega_sawatte.c
r0r249898
1// license:BSD-3-Clause
2// copyright-holders:
3
4/* Sega Sawatte / S-Pico
5
6a sound-only Pico type system (one of the boards even says S-PICO)
7
8CPU is unknown (I can't see one?!) cartridge dumps should be good, but not confirmed, might be data only for an MCU?
9driver does nothing except allow the softlist to be connected to the -romident commands etc.
10
11
12images supplied by Team Europe
13
14http://mamedev.emulab.it/haze/reference/sawatte/cartridge_pcb_front.jpg
15http://mamedev.emulab.it/haze/reference/sawatte/cartridge_pcb_back.jpg
16
17http://mamedev.emulab.it/haze/reference/sawatte/PCB_Front.jpg
18http://mamedev.emulab.it/haze/reference/sawatte/PCB_Back.jpg
19
20http://mamedev.emulab.it/haze/reference/sawatte/Console_Front.JPG
21http://mamedev.emulab.it/haze/reference/sawatte/Console_Back.JPG
22
23http://mamedev.emulab.it/haze/reference/sawatte/cartridge_example.jpg
24
25*/
26
27#include "emu.h"
28
29
30
31class sawatte_state : public driver_device
32{
33public:
34   sawatte_state(const machine_config &mconfig, device_type type, const char *tag)
35      : driver_device(mconfig, type, tag)
36   { }
37
38protected:
39};
40
41
42static INPUT_PORTS_START( sawatte )
43INPUT_PORTS_END
44
45
46static MACHINE_CONFIG_START( sawatte, sawatte_state )
47   MCFG_SOFTWARE_LIST_ADD("cart_list", "sawatte")
48MACHINE_CONFIG_END
49
50ROM_START( sawatte )
51ROM_END
52
53
54GAME( 1996?, sawatte,    0,       sawatte,  sawatte, driver_device,  0,  ROT0,  "Sega",    "Sawatte",          MACHINE_IS_SKELETON )
trunk/src/mame/mess.lst
r249897r249898
8181picou    // 1994 Sega Pico (USA)
8282picoj    // 1993 Sega Pico (Japan)
8383copera  // 1993 Sega / Yamaha
84sawatte   //
8485segacd  // 1992 Sega Sega CD (USA)
8586megacd  // 1993 Sega Mega-CD (Europe)
8687megacda // 1993 Sega Mega-CD (Asia)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team