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