Ultimate Tennis (Japan) - NOT WORKING
Touche Me

Comments:
Ultimate Tennis is waiting for some special code in order to boot - so it doesn't work past playing the introduction music.  Touche Me fit into ladyfrog.c driver pretty well - graphics layout needs to be adjusted as the sprites are wrong (or bad rom?).  I added DIP LOCATIONS for that driver while I was there and verified all that I could for Touche Me.
This commit is contained in:
Scott Stone 2009-11-06 03:57:57 +00:00
parent c4da81dd6d
commit 52b0530abe
3 changed files with 76 additions and 10 deletions

View File

@ -791,6 +791,19 @@ ROM_START( ultennis )
ROM_END ROM_END
ROM_START( ultennisj )
ROM_REGION( 0x80000, "maincpu", 0 ) /* 64k for 68000 code */
ROM_LOAD16_BYTE( "a&m001d0194-13c-u102-japan.u102", 0x00000, 0x40000, CRC(65cee452) SHA1(49259e8faf289d6d80769f6d44e9d61d15e431c6) )
ROM_LOAD16_BYTE( "a&m001d0194-12c-u101-japan.u101", 0x00001, 0x40000, CRC(5f4b0ca0) SHA1(57e9ed60cc0e53eeb4e08c4003138d3bdaec3de7) )
ROM_REGION16_LE( 0x200000, "gfx1", 0 )
ROM_LOAD( "a&m-001-01-a.ic133", 0x000000, 0x200000, CRC(29d9204d) SHA1(0b2b77a55b8c2877c2e31b63156505584d4ee1f0) )
ROM_REGION( 0x40000, "oki", 0 )
ROM_LOAD( "a&m001c1293-14a-u151.u151", 0x00000, 0x40000, CRC(4e19ca89) SHA1(ac7e17631ec653f83c4912df6f458b0e1df88096) )
ROM_END
/* /*
Stone Ball Stone Ball
Art & Magic, 1994 Art & Magic, 1994
@ -932,7 +945,8 @@ static DRIVER_INIT( stonebal )
* *
*************************************/ *************************************/
GAME( 1993, ultennis, 0, artmagic, ultennis, ultennis, ROT0, "Art & Magic", "Ultimate Tennis", GAME_SUPPORTS_SAVE ) GAME( 1993, ultennis, 0, artmagic, ultennis, ultennis, ROT0, "Art & Magic", "Ultimate Tennis", GAME_SUPPORTS_SAVE )
GAME( 1994, cheesech, 0, cheesech, cheesech, cheesech, ROT0, "Art & Magic", "Cheese Chase", GAME_SUPPORTS_SAVE ) GAME( 1993, ultennisj, ultennis,artmagic, ultennis, ultennis, ROT0, "Art & Magic", "Ultimate Tennis (Japan)", GAME_NOT_WORKING)
GAME( 1994, cheesech, 0, cheesech, cheesech, cheesech, ROT0, "Art & Magic", "Cheese Chase", GAME_SUPPORTS_SAVE )
GAME( 1994, stonebal, 0, stonebal, stonebal, stonebal, ROT0, "Art & Magic", "Stone Ball (4 Players)", GAME_SUPPORTS_SAVE ) GAME( 1994, stonebal, 0, stonebal, stonebal, stonebal, ROT0, "Art & Magic", "Stone Ball (4 Players)", GAME_SUPPORTS_SAVE )
GAME( 1994, stonebal2,stonebal, stonebal, stoneba2, stonebal, ROT0, "Art & Magic", "Stone Ball (2 Players)", GAME_SUPPORTS_SAVE ) GAME( 1994, stonebal2,stonebal, stonebal, stoneba2, stonebal, ROT0, "Art & Magic", "Stone Ball (2 Players)", GAME_SUPPORTS_SAVE )

View File

@ -1,6 +1,9 @@
/* /*
Lady Frog (c) 1990 Mondial Games Lady Frog (c) 1990 Mondial Games
(there's "(c) Alfa Tecnology" in the ROM) (there's "(c) Alfa Tecnology" in the ROM)
Touche Me - Unknown Manfacturer (likely the same as Lady Frog)
driver by Tomasz Slanina driver by Tomasz Slanina
'N.Y. Captor' (TAITO) hardware , without sub cpu. 'N.Y. Captor' (TAITO) hardware , without sub cpu.
@ -181,37 +184,45 @@ ADDRESS_MAP_END
static INPUT_PORTS_START( ladyfrog ) static INPUT_PORTS_START( ladyfrog )
PORT_START("DSW1") PORT_START("DSW1")
PORT_DIPNAME( 0x03, 0x02, DEF_STR( Lives ) ) PORT_DIPNAME( 0x03, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW1:1,2")
PORT_DIPSETTING( 0x00, "4" ) PORT_DIPSETTING( 0x00, "4" )
PORT_DIPSETTING( 0x01, "2" )
PORT_DIPSETTING( 0x02, "3" ) PORT_DIPSETTING( 0x02, "3" )
PORT_DIPSETTING( 0x01, "2" )
PORT_DIPSETTING( 0x03, "1" ) PORT_DIPSETTING( 0x03, "1" )
PORT_DIPNAME( 0x04, 0x00, "Clear 'doors' after life lost" ) PORT_DIPNAME( 0x04, 0x00, "Clear 'doors' after life lost" ) PORT_DIPLOCATION("SW1:3")
PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x04, DEF_STR( On ) ) PORT_DIPSETTING( 0x04, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Free_Play ) ) PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x08, "SW1:4" )
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Free_Play ) ) PORT_DIPLOCATION("SW1:5")
PORT_DIPSETTING( 0x10, DEF_STR( Off ) ) PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x20, 0x00, DEF_STR( Allow_Continue ) ) PORT_DIPNAME( 0x20, 0x00, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("SW1:6")
PORT_DIPSETTING( 0x20, DEF_STR( No ) ) PORT_DIPSETTING( 0x20, DEF_STR( No ) )
PORT_DIPSETTING( 0x00, DEF_STR( Yes ) ) PORT_DIPSETTING( 0x00, DEF_STR( Yes ) )
PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Coin_A ) ) PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW1:7,8")
PORT_DIPSETTING( 0x40, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x40, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0xc0, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0xc0, DEF_STR( 1C_1C ) )
PORT_DIPSETTING( 0x80, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x80, DEF_STR( 1C_2C ) )
PORT_DIPSETTING( 0x00, DEF_STR( 1C_3C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_3C ) )
PORT_START("DSW2") PORT_START("DSW2")
PORT_DIPNAME( 0x03, 0x01, DEF_STR( Difficulty ) ) PORT_DIPNAME( 0x03, 0x01, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2")
PORT_DIPSETTING( 0x03, DEF_STR( Easy ) ) PORT_DIPSETTING( 0x03, DEF_STR( Easy ) )
PORT_DIPSETTING( 0x01, DEF_STR( Normal ) ) PORT_DIPSETTING( 0x01, DEF_STR( Normal ) )
PORT_DIPSETTING( 0x02, DEF_STR( Hard ) ) PORT_DIPSETTING( 0x02, DEF_STR( Hard ) )
PORT_DIPSETTING( 0x00, DEF_STR( Hardest ) ) PORT_DIPSETTING( 0x00, DEF_STR( Hardest ) )
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPUNKNOWN_DIPLOC( 0x04, 0x04, "SW2:3" )
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW2:4")
PORT_DIPSETTING( 0x08, DEF_STR( Off ) ) PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPUNKNOWN_DIPLOC( 0x10, 0x10, "SW2:5" )
PORT_DIPUNKNOWN_DIPLOC( 0x20, 0x20, "SW2:6" )
PORT_DIPUNKNOWN_DIPLOC( 0x40, 0x40, "SW2:7" )
PORT_DIPUNKNOWN_DIPLOC( 0x80, 0x80, "SW2:8" )
PORT_START("INPUTS") PORT_START("INPUTS")
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY
@ -226,6 +237,26 @@ static INPUT_PORTS_START( ladyfrog )
INPUT_PORTS_END INPUT_PORTS_END
static INPUT_PORTS_START( toucheme )
PORT_INCLUDE( ladyfrog )
PORT_MODIFY("DSW1")
PORT_DIPUNKNOWN_DIPLOC( 0x04, 0x04, "SW1:3" )
PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x08, "SW1:4" )
PORT_DIPUNKNOWN_DIPLOC( 0x20, 0x20, "SW1:6" )
PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW1:7,8")
PORT_DIPSETTING( 0x40, DEF_STR( 2C_1C ) )
PORT_DIPSETTING( 0xc0, DEF_STR( 1C_1C ) )
PORT_DIPSETTING( 0x80, DEF_STR( 1C_2C ) )
PORT_DIPSETTING( 0x00, DEF_STR( 1C_4C ) )
PORT_MODIFY("DSW2")
PORT_DIPUNKNOWN_DIPLOC( 0x01, 0x01, "SW2:1" )
PORT_DIPUNKNOWN_DIPLOC( 0x02, 0x02, "SW2:2" )
PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x08, "SW2:4" )
INPUT_PORTS_END
static const gfx_layout charlayout = static const gfx_layout charlayout =
{ {
8,8, 8,8,
@ -310,6 +341,22 @@ static MACHINE_DRIVER_START( ladyfrog )
MACHINE_DRIVER_END MACHINE_DRIVER_END
ROM_START( toucheme )
ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "2.ic107", 0x0000, 0x10000, CRC(26f4580b) SHA1(59dc5799436cdaf68dfcb620cd9e2f6929ac7817) )
ROM_REGION( 0x10000, "audiocpu", 0 )
ROM_LOAD( "1.ic115", 0x0000, 0x8000, CRC(902589aa) SHA1(d60088fc31a67fec91f908f671af77bb87a5e59c) )
ROM_REGION( 0x60000, "gfx1", ROMREGION_INVERT )
ROM_LOAD( "3.ic32", 0x30000, 0x10000, CRC(223b4435) SHA1(fb5a4096012093bae5fda213a5de317e63a88ec3) )
ROM_LOAD( "4.ic33", 0x40000, 0x10000, CRC(96dcc2f3) SHA1(9c61f8161771e40ca41b6e102bc04583dc97cd0d) )
ROM_LOAD( "5.ic34", 0x50000, 0x10000, CRC(b8667a6b) SHA1(288a5cbd8fc01b24822e89fbc1e6d7f45c181483) )
ROM_LOAD( "6.ic8", 0x00000, 0x10000, CRC(d257382f) SHA1(9c459b90c9ddfe90de4a252f29a7bee809412b46) )
ROM_LOAD( "7.ic9", 0x10000, 0x10000, CRC(feb1b974) SHA1(ffd4527472cdf655fbebebf4d3abb61962e54457) )
ROM_LOAD( "8.ic10", 0x20000, 0x10000, CRC(fc6808bf) SHA1(f1f1b75a79dfdb500012f9b52c6364f0a13dce2d) )
ROM_END
ROM_START( ladyfrog ) ROM_START( ladyfrog )
ROM_REGION( 0x10000, "maincpu", 0 ) ROM_REGION( 0x10000, "maincpu", 0 )
ROM_LOAD( "2.107", 0x0000, 0x10000, CRC(fa4466e6) SHA1(08e5cc8e1d3c845bc9c253267f2683671bffa9f2) ) ROM_LOAD( "2.107", 0x0000, 0x10000, CRC(fa4466e6) SHA1(08e5cc8e1d3c845bc9c253267f2683671bffa9f2) )
@ -326,4 +373,7 @@ ROM_START( ladyfrog )
ROM_LOAD( "8.10", 0x20000, 0x10000, CRC(8c73baa1) SHA1(50fb408be181ef3c125dee23b04daeb010c9f276) ) ROM_LOAD( "8.10", 0x20000, 0x10000, CRC(8c73baa1) SHA1(50fb408be181ef3c125dee23b04daeb010c9f276) )
ROM_END ROM_END
GAME( 1990, ladyfrog, 0, ladyfrog, ladyfrog, 0, ORIENTATION_SWAP_XY, "Mondial Games", "Lady Frog", 0) GAME( 1990, ladyfrog, 0, ladyfrog, ladyfrog, 0, ORIENTATION_SWAP_XY, "Mondial Games", "Lady Frog", 0)
GAME( 1990, toucheme, 0, ladyfrog, toucheme, 0, ORIENTATION_SWAP_XY, "Mondial Games", "Touche Me", GAME_IMPERFECT_GRAPHICS)

View File

@ -8323,6 +8323,7 @@ Other Sun games
/* Art & Magic games */ /* Art & Magic games */
DRIVER( ultennis ) /* (c) 1993 */ DRIVER( ultennis ) /* (c) 1993 */
DRIVER( ultennisj ) /* (c) 1993 */
DRIVER( cheesech ) /* (c) 1994 */ DRIVER( cheesech ) /* (c) 1994 */
DRIVER( stonebal ) /* (c) 1994 */ DRIVER( stonebal ) /* (c) 1994 */
DRIVER( stonebal2 ) /* (c) 1994 */ DRIVER( stonebal2 ) /* (c) 1994 */
@ -8753,6 +8754,7 @@ Other Sun games
DRIVER( strvmstr ) /* (c) 1986 Enerdyne Technologies Inc */ DRIVER( strvmstr ) /* (c) 1986 Enerdyne Technologies Inc */
DRIVER( dorachan ) /* (c) 1980 Craul Denshi */ DRIVER( dorachan ) /* (c) 1980 Craul Denshi */
DRIVER( ladyfrog ) /* (c) 1990 Mondial Games */ DRIVER( ladyfrog ) /* (c) 1990 Mondial Games */
DRIVER( toucheme )
DRIVER( rabbit ) /* (c) 1997 Electronic Arts */ DRIVER( rabbit ) /* (c) 1997 Electronic Arts */
DRIVER( tmmjprd ) /* (c) 1997 Media / Sonnet */ DRIVER( tmmjprd ) /* (c) 1997 Media / Sonnet */
DRIVER( tmpdoki ) /* (c) 1998 Media Syouji */ DRIVER( tmpdoki ) /* (c) 1998 Media Syouji */