splash was mostly developed by OMK Software: http://www.baudejogos.net/jogoinfo.php?id=2849

This commit is contained in:
Michaël Banaan Ananas 2014-07-31 12:19:10 +00:00
parent a1113e517d
commit 3a55c1ca98

View File

@ -502,7 +502,6 @@ static MACHINE_CONFIG_START( splash, splash_state )
MCFG_PALETTE_ADD("palette", 2048)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
MCFG_MACHINE_RESET_OVERRIDE(splash_state, splash )
/* sound hardware */
@ -594,6 +593,7 @@ WRITE_LINE_MEMBER(splash_state::adpcm_int2)
}
static MACHINE_CONFIG_START( funystrp, splash_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, XTAL_24MHz/2) /* 12 MHz (24/2) */
MCFG_CPU_PROGRAM_MAP(funystrp_map)
@ -616,7 +616,6 @@ static MACHINE_CONFIG_START( funystrp, splash_state )
MCFG_PALETTE_ADD("palette", 2048)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
MCFG_MACHINE_RESET_OVERRIDE(splash_state, funystrp )
/* sound hardware */
@ -1061,15 +1060,14 @@ DRIVER_INIT_MEMBER(splash_state,funystrp)
ROM = (UINT16 *)memregion("audiocpu")->base();
membank("sound_bank")->configure_entries(0, 16, &ROM[0x00000], 0x8000);
}
GAME( 1992, splash, 0, splash, splash, splash_state, splash, ROT0, "Gaelco", "Splash! (Ver. 1.2 World)", 0 )
GAME( 1992, splash10, splash, splash, splash, splash_state, splash10, ROT0, "Gaelco", "Splash! (Ver. 1.0 World)", 0 )
GAME( 1992, paintlad, splash, splash, splash, splash_state, splash, ROT0, "Gaelco", "Painted Lady (Splash) (Ver. 1.3 US)", 0 )
GAME( 1992, splash, 0, splash, splash, splash_state, splash, ROT0, "Gaelco / OMK Software", "Splash! (Ver. 1.2 World)", 0 )
GAME( 1992, splash10, splash, splash, splash, splash_state, splash10, ROT0, "Gaelco / OMK Software", "Splash! (Ver. 1.0 World)", 0 )
GAME( 1992, paintlad, splash, splash, splash, splash_state, splash, ROT0, "Gaelco / OMK Software", "Painted Lady (Splash) (Ver. 1.3 US)", 0 )
GAME( 1993, roldfrog, 0, roldfrog, splash, splash_state, roldfrog, ROT0, "Microhard", "The Return of Lady Frog (set 1)", 0)
GAME( 1993, roldfroga,roldfrog, roldfrog, splash, splash_state, roldfrog, ROT0, "Microhard", "The Return of Lady Frog (set 2)", 0 )
GAME( 1995, rebus, 0, roldfrog, splash, splash_state, rebus, ROT0, "Microhard", "Rebus", GAME_NOT_WORKING|GAME_UNEMULATED_PROTECTION|GAME_NO_SOUND )
GAME( 199?, funystrp, 0, funystrp, funystrp, splash_state, funystrp, ROT0, "Microhard / MagicGames", "Funny Strip", GAME_NOT_WORKING|GAME_UNEMULATED_PROTECTION )
GAME( 199?, puckpepl, funystrp, funystrp, funystrp, splash_state, funystrp, ROT0, "Microhard", "Puck People", GAME_NOT_WORKING|GAME_UNEMULATED_PROTECTION )
GAME( 1995, rebus, 0, roldfrog, splash, splash_state, rebus, ROT0, "Microhard", "Rebus", GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION | GAME_NO_SOUND )
GAME( 199?, funystrp, 0, funystrp, funystrp, splash_state, funystrp, ROT0, "Microhard / MagicGames", "Funny Strip", GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION )
GAME( 199?, puckpepl, funystrp, funystrp, funystrp, splash_state, funystrp, ROT0, "Microhard", "Puck People", GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION )