mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
New clones marked not working
----------------------------- Prin-C (without touch-pad) [TeamEurope, QUFB] Super Note Club µ girlish (Japan) [TeamEurope]
This commit is contained in:
parent
1d035bd353
commit
9bda81283d
@ -43763,6 +43763,7 @@ wardnerjb // bootleg
|
||||
|
||||
@source:tomy/tomy_princ.cpp
|
||||
princ // Tomy Prin-C (Japan)
|
||||
princnt // Tomy Prin-C (without touch-pad)
|
||||
|
||||
@source:tomy/tutor.cpp
|
||||
pyuuta // 1982 Tomy Pyuuta
|
||||
@ -45030,6 +45031,7 @@ prestige // PreComputer Prestige Elite
|
||||
snotec // Bandai Super Note Club (Japan)
|
||||
snotecex // Bandai Super Note Club EX (Japan)
|
||||
snotecu // Bandai Super Note Club U (Japan)
|
||||
snotecug // Bandai Super Note Club U girlish (Japan)
|
||||
|
||||
@source:vtech/socrates.cpp
|
||||
iqunlimz // 1991 IQ Unlimited (Z80)
|
||||
|
@ -47,13 +47,15 @@
|
||||
************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
#include "bus/generic/carts.h"
|
||||
#include "bus/generic/slot.h"
|
||||
#include "cpu/f2mc16/mb9061x.h"
|
||||
#include "machine/timer.h"
|
||||
|
||||
#include "screen.h"
|
||||
#include "softlist_dev.h"
|
||||
#include "speaker.h"
|
||||
#include "machine/timer.h"
|
||||
#include "cpu/f2mc16/mb9061x.h"
|
||||
#include "bus/generic/slot.h"
|
||||
#include "bus/generic/carts.h"
|
||||
|
||||
|
||||
namespace {
|
||||
@ -164,7 +166,13 @@ ROM_START( princ )
|
||||
ROM_LOAD("29f800t.u4", 0x00000, 0x100000, CRC(30b6b864) SHA1(7ada3af85dd8dd3f95ca8965ad8e642c26445293))
|
||||
ROM_END
|
||||
|
||||
ROM_START( princnt ) // Prin-C E100-T001-11 PCB
|
||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||
ROM_LOAD("tc538000.u3", 0x00000, 0x100000, CRC(e4e2bfe9) SHA1(b3a7727544918b9030c362694ddf9a2fc3bca8b4))
|
||||
ROM_END
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
|
||||
COMP( 1996?, princ, 0, 0, tomy_princ, tomy_princ, tomy_princ_state, empty_init, "Tomy", "Prin-C", MACHINE_IS_SKELETON )
|
||||
COMP( 1996?, princ, 0, 0, tomy_princ, tomy_princ, tomy_princ_state, empty_init, "Tomy", "Prin-C (with touch-pad)", MACHINE_IS_SKELETON )
|
||||
COMP( 1996?, princnt, princ, 0, tomy_princ, tomy_princ, tomy_princ_state, empty_init, "Tomy", "Prin-C (without touch-pad)", MACHINE_IS_SKELETON )
|
||||
|
@ -914,6 +914,11 @@ ROM_START( snotecu )
|
||||
ROM_LOAD("27-6100-00.u1", 0x00000, 0x100000, CRC(b2f979d5) SHA1(d2a76e99351971d1fb4cf4df9fe5741a606eb844))
|
||||
ROM_END
|
||||
|
||||
ROM_START( snotecug )
|
||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||
ROM_LOAD("27-6100-02.u1", 0x00000, 0x100000, CRC(1e14e6ea) SHA1(3e3b8dbea5f559ff98f525e3c7029b9d55e5515b))
|
||||
ROM_END
|
||||
|
||||
ROM_START( glmcolor )
|
||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||
ROM_LOAD( "27-5673-00.u6", 0x00000, 0x100000, CRC(c4245392) SHA1(bb651aaf11b75f4155c0a0106de9394018110cc7) )
|
||||
@ -942,6 +947,7 @@ COMP( 1996, snotecex, 0, 0, snotec, glcolor, prestige_state, empty
|
||||
COMP( 1996, glmcolor, 0, 0, glmcolor, glmcolor, prestige_state, empty_init, "VTech", "Genius Leader Magic Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1997, gl6000sl, 0, 0, gl6000sl, prestige, prestige_state, empty_init, "VTech", "Genius Leader 6000SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1998, snotecu, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", u8"Super Note Club µ (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1999, snotecug, snotecu, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", u8"Super Note Club µ girlish (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1998, gl7007sl, 0, 0, gl7007sl, prestige, prestige_state, empty_init, "VTech", "Genius Leader 7007SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1998, prestige, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "PreComputer Prestige Elite", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
COMP( 1999, gwnf, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Winner Notebook Fun (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
|
||||
|
Loading…
Reference in New Issue
Block a user