summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2017-06-24 19:42:15 +0200
committer hap <happppp@users.noreply.github.com>2017-06-24 19:42:15 +0200
commita89cc32081ad0d3cdc8d1c86998950786874afaa (patch)
tree3ad39e620c2ba367ec0b7b0d9756db7f66cbb0df
parent37c641912131926e9e50b1461c368bfaa576e256 (diff)
removed hh_sm500 driver, will re-add nupogodi as a clone of gnw_mc25 another time (nw)
-rw-r--r--scripts/target/mame/mess.lua1
-rw-r--r--src/mame/drivers/hh_sm500.cpp130
-rw-r--r--src/mame/mame.lst3
-rw-r--r--src/mame/mess.flt1
4 files changed, 0 insertions, 135 deletions
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index feeeda963d0..ee6edf37da8 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -2766,7 +2766,6 @@ files {
createMESSProjects(_target, _subtarget, "sharp")
files {
- MAME_DIR .. "src/mame/drivers/hh_sm500.cpp",
MAME_DIR .. "src/mame/drivers/hh_sm510.cpp",
MAME_DIR .. "src/mame/video/mz700.cpp",
MAME_DIR .. "src/mame/drivers/mz700.cpp",
diff --git a/src/mame/drivers/hh_sm500.cpp b/src/mame/drivers/hh_sm500.cpp
deleted file mode 100644
index d9e7327cbf3..00000000000
--- a/src/mame/drivers/hh_sm500.cpp
+++ /dev/null
@@ -1,130 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:hap
-/***************************************************************************
-
- Sharp SM500(and derivatives) handhelds.
-
- TODO:
- - it's a skeleton driver
-
-***************************************************************************/
-
-#include "emu.h"
-
-#include "cpu/sm510/sm500.h"
-#include "sound/spkrdev.h"
-
-#include "screen.h"
-#include "speaker.h"
-
-//#include "hh_sm500_test.lh" // common test-layout - use external artwork
-
-
-class hh_sm500_state : public driver_device
-{
-public:
- hh_sm500_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_inp_matrix(*this, "IN.%u", 0),
- m_speaker(*this, "speaker")
- { }
-
- // devices
- required_device<cpu_device> m_maincpu;
- optional_ioport_array<2> m_inp_matrix; // max 2
- optional_device<speaker_sound_device> m_speaker;
-
- // misc common
- u16 m_inp_mux; // multiplexed inputs mask
-
-protected:
- virtual void machine_start() override;
- virtual void machine_reset() override;
-};
-
-
-// machine start/reset
-
-void hh_sm500_state::machine_start()
-{
- // zerofill
- m_inp_mux = 0;
-
- // register for savestates
- save_item(NAME(m_inp_mux));
-}
-
-void hh_sm500_state::machine_reset()
-{
-}
-
-
-
-/***************************************************************************
-
- Helper Functions
-
-***************************************************************************/
-
-
-
-/***************************************************************************
-
- Minidrivers (subclass, I/O, Inputs, Machine Config)
-
-***************************************************************************/
-
-/***************************************************************************
-
- IM-02 Nu, Pogodi!
- * KB1013VK1-2, die label V2-2 VK1-2
-
-***************************************************************************/
-
-class nupogodi_state : public hh_sm500_state
-{
-public:
- nupogodi_state(const machine_config &mconfig, device_type type, const char *tag)
- : hh_sm500_state(mconfig, type, tag)
- { }
-};
-
-// handlers
-
-
-// config
-
-static INPUT_PORTS_START( nupogodi )
-INPUT_PORTS_END
-
-static MACHINE_CONFIG_START( nupogodi )
-
- /* basic machine hardware */
- MCFG_CPU_ADD("maincpu", KB1013VK12, XTAL_32_768kHz)
-
- /* sound hardware */
- MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speaker", SPEAKER_SOUND, 0)
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
-MACHINE_CONFIG_END
-
-
-
-
-
-/***************************************************************************
-
- Game driver(s)
-
-***************************************************************************/
-
-ROM_START( nupogodi )
- ROM_REGION( 0x0800, "maincpu", ROMREGION_ERASE00 )
- ROM_LOAD( "nupogodi.bin", 0x0000, 0x0740, CRC(cb820c32) SHA1(7e94fc255f32db725d5aa9e196088e490c1a1443) )
-ROM_END
-
-
-
-// YEAR NAME PARENT CMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS
-CONS( 1984, nupogodi, 0, 0, nupogodi, nupogodi, nupogodi_state, 0, "Elektronika", "Nu, pogodi!", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING )
diff --git a/src/mame/mame.lst b/src/mame/mame.lst
index edb17488af6..7c0d9338bfa 100644
--- a/src/mame/mame.lst
+++ b/src/mame/mame.lst
@@ -14523,9 +14523,6 @@ ttfballa // Toytronic
us2pfball // US Games
uspbball // US Games
-@source:hh_sm500.cpp
-nupogodi //
-
@source:hh_sm510.cpp
gnw_bx301 // Nintendo
gnw_dj101 // Nintendo
diff --git a/src/mame/mess.flt b/src/mame/mess.flt
index b0c3fb32686..984ed80b3cc 100644
--- a/src/mame/mess.flt
+++ b/src/mame/mess.flt
@@ -239,7 +239,6 @@ hh_cop400.cpp
hh_hmcs40.cpp
hh_melps4.cpp
hh_pic16.cpp
-hh_sm500.cpp
hh_sm510.cpp
hh_tms1k.cpp
hh_ucom4.cpp