summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vtech_unk2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vtech_unk2.cpp')
-rw-r--r--src/mame/drivers/vtech_unk2.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/mame/drivers/vtech_unk2.cpp b/src/mame/drivers/vtech_unk2.cpp
deleted file mode 100644
index bd8ebe47add..00000000000
--- a/src/mame/drivers/vtech_unk2.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Sandro Ronco
-
-// Unknown CPU type
-
-#include "emu.h"
-#include "screen.h"
-
-class glmmc_state : public driver_device
-{
-public:
- glmmc_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag)
- { }
-
- void glmmc(machine_config &config);
-
-private:
- virtual uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
-};
-
-uint32_t glmmc_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
-{
- return 0;
-}
-
-static INPUT_PORTS_START( glmmc )
-INPUT_PORTS_END
-
-void glmmc_state::glmmc(machine_config &config)
-{
- /* basic machine hardware */
- // UNKNOWN(config, "maincpu", unknown); // CPU type is unknown, epoxy blob
-
- /* video hardware */
- screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
- screen.set_refresh_hz(50);
- screen.set_vblank_time(ATTOSECONDS_IN_USEC(2500)); /* not accurate */
- screen.set_size(512, 256);
- screen.set_visarea(0, 512-1, 0, 256-1);
- screen.set_screen_update(FUNC(glmmc_state::screen_update));
-}
-
-ROM_START( glmmc )
- ROM_REGION(0x200000, "maincpu", 0)
- ROM_LOAD( "27-5889-00.bin", 0x000000, 0x080000, CRC(5e2c6359) SHA1(cc01c7bd5c87224b63dd1044db5a36a5cb7824f1) )
-ROM_END
-
-COMP( 19??, glmmc, 0, 0, glmmc, glmmc, glmmc_state, empty_init, "Video Technology", "Genius Leader Master Mega Color (Germany)", MACHINE_IS_SKELETON)