diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua index 3c26b80871c..98c85638ac3 100644 --- a/scripts/target/mame/arcade.lua +++ b/scripts/target/mame/arcade.lua @@ -4922,6 +4922,7 @@ files { MAME_DIR .. "src/mame/includes/freekick.h", MAME_DIR .. "src/mame/video/freekick.cpp", MAME_DIR .. "src/mame/drivers/freeway.cpp", + MAME_DIR .. "src/mame/drivers/funeball.cpp", MAME_DIR .. "src/mame/drivers/fungames.cpp", MAME_DIR .. "src/mame/drivers/funkball.cpp", MAME_DIR .. "src/mame/drivers/gambl186.cpp", diff --git a/src/mame/arcade.flt b/src/mame/arcade.flt index ad2bcbdfd35..2f53b69ea65 100644 --- a/src/mame/arcade.flt +++ b/src/mame/arcade.flt @@ -436,6 +436,7 @@ fresh.cpp fromanc2.cpp fromance.cpp fruitpc.cpp +funeball.cpp fungames.cpp funkball.cpp funkybee.cpp diff --git a/src/mame/drivers/funeball.cpp b/src/mame/drivers/funeball.cpp new file mode 100644 index 00000000000..1a14818a452 --- /dev/null +++ b/src/mame/drivers/funeball.cpp @@ -0,0 +1,57 @@ +// license:BSD-3-Clause +// copyright-holders: +/*************************************************************************** + + Skeleton driver for Fun Industries' "Fun-E-Ball" electromechanical machine. + +***************************************************************************/ + +#include "emu.h" +#include "cpu/mcs51/mcs51.h" +#include "speaker.h" + +namespace +{ + +class funeball_state : public driver_device +{ +public: + funeball_state(const machine_config &mconfig, device_type type, const char *tag) + : driver_device(mconfig, type, tag) + , m_maincpu(*this, "maincpu") + { + } + + void funeball(machine_config &config); + +protected: + required_device m_maincpu; +}; + +INPUT_PORTS_START(funeball) +INPUT_PORTS_END + +void funeball_state::funeball(machine_config &config) +{ + I80C51(config, m_maincpu, 8_MHz_XTAL); // Actually a Philips P80C562EBA + + SPEAKER(config, "mono").front_center(); +} + +// PCB SC1781 +ROM_START(funeball) + ROM_REGION(0x8000, "maincpu", 0) + ROM_LOAD("feb.u5", 0x0000, 0x8000, CRC(abfcc5f2) SHA1(5b9578447c31decfb9a40d98e013460f1b948adb)) + + // The PCB has room for two ISD1420 (U8 and U13), but only one was present (U8) on this machine + ROM_REGION(0x00100, "samples", 0) + ROM_LOAD("fun-e-ball_sound_1420_rev_b_12-14-97.u8", 0x00000, 0x00100, NO_DUMP) // ISD1420, internal ROM size unknown + + ROM_REGION(0x80, "eeprom", 0) + ROM_LOAD("93c46.u15", 0x00, 0x80, CRC(01ec6e74) SHA1(12e774b25af57a0fbceecc537af087ead09d6dd4)) +ROM_END + +} // anonymous namespace + +// YEAR NAME PARENT MACHINE INPUT CLASS INIT ROT COMPANY FULLNAME FLAGS +GAME( 1997, funeball, 0, funeball, funeball, funeball_state, empty_init, ROT0, "Fun Industries Inc.", "Fun-E-Ball", MACHINE_IS_SKELETON_MECHANICAL ) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index d9980929dc8..867d7d30c91 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -14171,6 +14171,9 @@ fs3216 // @source:ft68m.cpp ft68m // +@source:funeball.cpp +funeball // (c) 1997 Fun Industries Inc. + @source:fungames.cpp biplane // (c) 1975 Fun Games biplane4 // (c) 1976 Fun Games