New Working clones added

-------------
Nu, pogodi! [hap, Igor]
Explorers of Space [hap, Igor]
Game & Watch: Egg [hap]
This commit is contained in:
hap 2017-06-28 03:32:21 +02:00
parent 35587f742d
commit 372fb33a15
2 changed files with 91 additions and 18 deletions

View File

@ -6,10 +6,10 @@
Sharp SM5xx family handhelds. Sharp SM5xx family handhelds.
TODO: TODO:
- improve svg layout for gnw_mc25, gnw_jr55, gnw_mw56 - improve svg screen for gnw_mc25, gnw_eg26, gnw_jr55, gnw_mw56, exospace
- svg lcd screen background/foreground (not supported in core), - svg lcd screen background/foreground (not supported in core),
or should it be for external artwork only? or should it be for external artwork only?
- confirm gnw_mc25 rom (dumped from Soviet clone, but pretty confident that it's same) - confirm gnw_mc25/gnw_eg26 rom (dumped from Soviet clone, but pretty confident that it's same)
***************************************************************************/ ***************************************************************************/
@ -607,9 +607,11 @@ MACHINE_CONFIG_END
MC-25 and EG-26 are the same game, it's assumed that the latter was for MC-25 and EG-26 are the same game, it's assumed that the latter was for
regions where Nintendo wasn't able to license from Disney. regions where Nintendo wasn't able to license from Disney.
In 1984, Elektronika(USSR) released a clone: Nu, Pogodi! This was followed In 1984, Elektronika(USSR) released a clone: Nu, pogodi! This was followed
by several other games that were the same under the hood, only differing by several other titles that were the same under the hood, only differing
in graphics. in graphics. They also made a slightly modified version, adding a new game
mode (by pressing A+B) where the player/CPU roles are reversed. This version
is known as Razvedciki kosmosa (export version: Explorers of Space).
***************************************************************************/ ***************************************************************************/
@ -650,6 +652,13 @@ static INPUT_PORTS_START( mc25 )
PORT_CONFSETTING( 0x00, DEF_STR( On ) ) PORT_CONFSETTING( 0x00, DEF_STR( On ) )
INPUT_PORTS_END INPUT_PORTS_END
static INPUT_PORTS_START( exospace )
PORT_INCLUDE( mc25 )
PORT_MODIFY("BA")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED )
INPUT_PORTS_END
static MACHINE_CONFIG_START( mc25 ) static MACHINE_CONFIG_START( mc25 )
/* basic machine hardware */ /* basic machine hardware */
@ -674,6 +683,37 @@ static MACHINE_CONFIG_START( mc25 )
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
MACHINE_CONFIG_END MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( eg26, mc25 )
/* video hardware */
MCFG_SCREEN_MODIFY("screen")
MCFG_SCREEN_SIZE(1694, 1080)
MCFG_SCREEN_VISIBLE_AREA(0, 1694-1, 0, 1080-1)
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( nupogodi, mc25 )
/* basic machine hardware */
MCFG_CPU_REPLACE("maincpu", KB1013VK12, XTAL_32_768kHz)
MCFG_SM500_WRITE_O_CB(WRITE8(hh_sm510_state, sm500_lcd_segment_w))
MCFG_SM510_READ_K_CB(READ8(hh_sm510_state, input_r))
MCFG_SM510_WRITE_R_CB(WRITE8(hh_sm510_state, piezo_input_w))
MCFG_SM510_READ_BA_CB(IOPORT("BA"))
/* video hardware */
MCFG_SCREEN_MODIFY("screen")
MCFG_SCREEN_SIZE(1724, 1080)
MCFG_SCREEN_VISIBLE_AREA(0, 1724-1, 0, 1080-1)
MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( exospace, nupogodi )
/* video hardware */
MCFG_SCREEN_MODIFY("screen")
MCFG_SCREEN_SIZE(1756, 1080)
MCFG_SCREEN_VISIBLE_AREA(0, 1756-1, 0, 1080-1)
MACHINE_CONFIG_END
@ -1248,6 +1288,30 @@ ROM_START( gnw_mc25 )
ROM_LOAD( "gnw_mc25.svg", 0, 100018, CRC(bcd01de3) SHA1(2c7a9da248f96ac11e794a46942a3e420d1e854b) ) ROM_LOAD( "gnw_mc25.svg", 0, 100018, CRC(bcd01de3) SHA1(2c7a9da248f96ac11e794a46942a3e420d1e854b) )
ROM_END ROM_END
ROM_START( gnw_eg26 )
ROM_REGION( 0x1000, "maincpu", 0 )
ROM_LOAD( "eg-26", 0x0000, 0x0740, BAD_DUMP CRC(cb820c32) SHA1(7e94fc255f32db725d5aa9e196088e490c1a1443) ) // dumped from Soviet clone
ROM_REGION( 100529, "svg", 0)
ROM_LOAD( "gnw_eg26.svg", 0, 100529, CRC(055c6b47) SHA1(66f78cd705bc982e92c950a7bd685c681c52a5e7) )
ROM_END
ROM_START( nupogodi )
ROM_REGION( 0x1000, "maincpu", 0 )
ROM_LOAD( "nupogodi.bin", 0x0000, 0x0740, CRC(cb820c32) SHA1(7e94fc255f32db725d5aa9e196088e490c1a1443) )
ROM_REGION( 123824, "svg", 0)
ROM_LOAD( "nupogodi.svg", 0, 123824, CRC(fc1ccab0) SHA1(ef81b5119a62dc68486db85a19ac9db5ef01778e) )
ROM_END
ROM_START( exospace )
ROM_REGION( 0x1000, "maincpu", 0 )
ROM_LOAD( "exospace.bin", 0x0000, 0x0740, CRC(553e2b09) SHA1(2b74f8437b881fbb62b61f25435a5bfc66872a9a) )
ROM_REGION( 63114, "svg", 0)
ROM_LOAD( "exospace.svg", 0, 63114, CRC(64a24c67) SHA1(54c77615a748e44c8c6217583c7567a152dcf21f) )
ROM_END
ROM_START( gnw_dm53 ) ROM_START( gnw_dm53 )
ROM_REGION( 0x1000, "maincpu", 0 ) ROM_REGION( 0x1000, "maincpu", 0 )
@ -1316,17 +1380,23 @@ ROM_END
// YEAR NAME PARENT CMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS // YEAR NAME PARENT COMP MACHINE INPUT STATE INIT COMPANY, FULLNAME, FLAGS
CONS( 1989, ktopgun, 0, 0, ktopgun, ktopgun, ktopgun_state, 0, "Konami", "Top Gun (handheld)", MACHINE_SUPPORTS_SAVE ) CONS( 1989, ktopgun, 0, 0, ktopgun, ktopgun, ktopgun_state, 0, "Konami", "Top Gun (handheld)", MACHINE_SUPPORTS_SAVE )
CONS( 1989, kcontra, 0, 0, kcontra, kcontra, kcontra_state, 0, "Konami", "Contra (handheld)", MACHINE_SUPPORTS_SAVE ) CONS( 1989, kcontra, 0, 0, kcontra, kcontra, kcontra_state, 0, "Konami", "Contra (handheld)", MACHINE_SUPPORTS_SAVE )
CONS( 1989, ktmnt, 0, 0, ktmnt, ktmnt, ktmnt_state, 0, "Konami", "Teenage Mutant Ninja Turtles (handheld)", MACHINE_SUPPORTS_SAVE ) CONS( 1989, ktmnt, 0, 0, ktmnt, ktmnt, ktmnt_state, 0, "Konami", "Teenage Mutant Ninja Turtles (handheld)", MACHINE_SUPPORTS_SAVE )
CONS( 1989, kgradius, 0, 0, kgradius, kgradius, kgradius_state, 0, "Konami", "Gradius (handheld)", MACHINE_SUPPORTS_SAVE ) CONS( 1989, kgradius, 0, 0, kgradius, kgradius, kgradius_state, 0, "Konami", "Gradius (handheld)", MACHINE_SUPPORTS_SAVE )
CONS( 1989, kloneran, 0, 0, kloneran, kloneran, kloneran_state, 0, "Konami", "Lone Ranger (handheld)", MACHINE_SUPPORTS_SAVE ) CONS( 1989, kloneran, 0, 0, kloneran, kloneran, kloneran_state, 0, "Konami", "Lone Ranger (handheld)", MACHINE_SUPPORTS_SAVE )
CONS( 1981, gnw_mc25, 0, 0, mc25, mc25, mc25_state, 0, "Nintendo", "Game & Watch: Mickey Mouse", MACHINE_SUPPORTS_SAVE ) CONS( 1981, gnw_mc25, 0, 0, mc25, mc25, mc25_state, 0, "Nintendo", "Game & Watch: Mickey Mouse", MACHINE_SUPPORTS_SAVE )
CONS( 1982, gnw_dm53, 0, 0, dm53, dm53, dm53_state, 0, "Nintendo", "Game & Watch: Mickey & Donald", MACHINE_SUPPORTS_SAVE ) CONS( 1981, gnw_eg26, gnw_mc25, 0, eg26, mc25, mc25_state, 0, "Nintendo", "Game & Watch: Egg", MACHINE_SUPPORTS_SAVE )
CONS( 1983, gnw_jr55, 0, 0, jr55, jr55, jr55_state, 0, "Nintendo", "Game & Watch: Donkey Kong II", MACHINE_SUPPORTS_SAVE ) CONS( 1984, nupogodi, gnw_mc25, 0, nupogodi, mc25, mc25_state, 0, "Elektronika", "Nu, pogodi!", MACHINE_SUPPORTS_SAVE )
CONS( 1983, gnw_mw56, 0, 0, mw56, mw56, mw56_state, 0, "Nintendo", "Game & Watch: Mario Bros.", MACHINE_SUPPORTS_SAVE ) CONS( 1989, exospace, gnw_mc25, 0, exospace, exospace, mc25_state, 0, "Elektronika", "Explorers of Space", MACHINE_SUPPORTS_SAVE )
CONS( 1982, gnw_dj101, 0, 0, dj101, dj101, dj101_state, 0, "Nintendo", "Game & Watch: Donkey Kong Jr. (new wide screen)", MACHINE_SUPPORTS_SAVE )
CONS( 1983, gnw_ml102, 0, 0, ml102, ml102, ml102_state, 0, "Nintendo", "Game & Watch: Mario's Cement Factory (new wide screen)", MACHINE_SUPPORTS_SAVE ) CONS( 1982, gnw_dm53, 0, 0, dm53, dm53, dm53_state, 0, "Nintendo", "Game & Watch: Mickey & Donald", MACHINE_SUPPORTS_SAVE )
CONS( 1984, gnw_bx301, 0, 0, bx301, bx301, bx301_state, 0, "Nintendo", "Game & Watch: Boxing", MACHINE_SUPPORTS_SAVE ) CONS( 1983, gnw_jr55, 0, 0, jr55, jr55, jr55_state, 0, "Nintendo", "Game & Watch: Donkey Kong II", MACHINE_SUPPORTS_SAVE )
CONS( 1983, gnw_mw56, 0, 0, mw56, mw56, mw56_state, 0, "Nintendo", "Game & Watch: Mario Bros.", MACHINE_SUPPORTS_SAVE )
CONS( 1982, gnw_dj101, 0, 0, dj101, dj101, dj101_state, 0, "Nintendo", "Game & Watch: Donkey Kong Jr. (new wide screen)", MACHINE_SUPPORTS_SAVE )
CONS( 1983, gnw_ml102, 0, 0, ml102, ml102, ml102_state, 0, "Nintendo", "Game & Watch: Mario's Cement Factory (new wide screen)", MACHINE_SUPPORTS_SAVE )
CONS( 1984, gnw_bx301, 0, 0, bx301, bx301, bx301_state, 0, "Nintendo", "Game & Watch: Boxing", MACHINE_SUPPORTS_SAVE )

View File

@ -14527,9 +14527,11 @@ us2pfball // US Games
uspbball // US Games uspbball // US Games
@source:hh_sm510.cpp @source:hh_sm510.cpp
exospace // Elektronika
gnw_bx301 // Nintendo gnw_bx301 // Nintendo
gnw_dj101 // Nintendo gnw_dj101 // Nintendo
gnw_dm53 // Nintendo gnw_dm53 // Nintendo
gnw_eg26 // Nintendo
gnw_jr55 // Nintendo gnw_jr55 // Nintendo
gnw_mc25 // Nintendo gnw_mc25 // Nintendo
gnw_ml102 // Nintendo gnw_ml102 // Nintendo
@ -14539,6 +14541,7 @@ kgradius // Konami
kloneran // Konami kloneran // Konami
ktmnt // Konami ktmnt // Konami
ktopgun // Konami ktopgun // Konami
nupogodi // Elektronika
@source:hh_tms1k.cpp @source:hh_tms1k.cpp
7in1ss // Tiger Electronics 7in1ss // Tiger Electronics