summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prestige.cpp
diff options
context:
space:
mode:
author ClawGrip <clawgrip@hotmail.com>2019-12-05 09:44:57 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2019-12-05 19:44:57 +1100
commit8114ac6235191e63faed3cba06c434042875c817 (patch)
treecf315fb82e5b6d7c688346dde1142500ad0d3a18 /src/mame/drivers/prestige.cpp
parentb56134a1821ef5fade36899511b6d5994dea67e3 (diff)
New machines marked as NOT_WORKING (#6013)
* New machines marked as NOT_WORKING ---------------------------------- PC Super Color (Spain) [ClawGrip] * Add 'pcscolor' (nw)
Diffstat (limited to 'src/mame/drivers/prestige.cpp')
-rw-r--r--src/mame/drivers/prestige.cpp28
1 files changed, 26 insertions, 2 deletions
diff --git a/src/mame/drivers/prestige.cpp b/src/mame/drivers/prestige.cpp
index bb7a473048f..8197b7c32a9 100644
--- a/src/mame/drivers/prestige.cpp
+++ b/src/mame/drivers/prestige.cpp
@@ -44,6 +44,26 @@ Notes:
/*
+ VTech PC Super Color (Spain)
+ __________________________________ _______________|||||||||||||____
+ | | | ||||||||||||| ___|
+ | | | |
+ | |___| TI CSM10233AN |__
+ | ____ ____ __\_____ |
+ | _____________ ____ (GLOB) |_______||
+ | |S2564RL-100 | ____ _____ _____ |
+ | |____________| ____ | | | ||
+ | ____ |Z80 | S2564RL-100->| ||
+ | ______________ ____ | | | ||
+ | | 27-5560-01 | ____ | |<-Z84C0008PEC | ||
+ | |_____________| | | | | __________ |____||
+ \ | | |____| |_________| ________|
+ \_____ ____________| | SN74HC244N |
+ |||||||||||||| |__|||||_____ ___|
+ |||||||||||||| |||||||||||
+*/
+
+/*
Undumped cartridges:
80-1410 Super Science
@@ -64,7 +84,6 @@ Notes:
*/
/*
-
TODO:
- identify unknown chips (maybe related to the sound??)
@@ -76,7 +95,6 @@ Notes:
*/
-
#include "emu.h"
#include "cpu/z80/z80.h"
@@ -862,6 +880,11 @@ ROM_START( glscolor )
ROM_LOAD( "27-5488-00.u5", 0x00000, 0x080000, CRC(e6cf7702) SHA1(ce40418a7777b331bf8c4c881d51732aeb384582) ) // identical to 'Genius Leader Color'
ROM_END
+ROM_START( pcscolor )
+ ROM_REGION( 0x100000, "maincpu", 0 )
+ ROM_LOAD( "27-5560-01.u5", 0x00000, 0x080000, CRC(e21e7ecd) SHA1(f3eeb19a88f1856406b357f2966880113b7340dc) )
+ROM_END
+
ROM_START( snotec )
ROM_REGION( 0x100000, "maincpu", 0 )
ROM_LOAD( "27-5616-01.u6", 0x00000, 0x080000, CRC(74093f5b) SHA1(3495b07e297315051888261d608680513a05c08b) )
@@ -898,6 +921,7 @@ ROM_END
// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
COMP( 1994, glcolor, 0, 0, glcolor, glcolor, prestige_state, empty_init, "VTech", "Genius Leader Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
COMP( 1994, glscolor, glcolor, 0, glcolor, glcolor, prestige_state, empty_init, "VTech", "Genius Leader Super Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1994, pcscolor, 0, 0, glcolor, glcolor, prestige_state, empty_init, "VTech", "PC Super Color (Spain)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
COMP( 1995, snotec, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", "Super Note Club (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
COMP( 1996, snotecex, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", "Super Note Club EX (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
COMP( 1996, glmcolor, 0, 0, glmcolor, glmcolor, prestige_state, empty_init, "VTech", "Genius Leader Magic Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )