mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
new game (not working): Pacman - 25th Anniversary Edition (V2.0)
New Game Added ------------------------------------- Pacman - 25th Anniversary Edition (V2.0) [Sara S.]
This commit is contained in:
parent
486c5ea8b6
commit
a84ca7093b
@ -38,8 +38,6 @@
|
|||||||
Pacman 25th Anniversary is a program update giving Pacman it's own start button
|
Pacman 25th Anniversary is a program update giving Pacman it's own start button
|
||||||
instead of using the above mentioned "joystick maneuver"
|
instead of using the above mentioned "joystick maneuver"
|
||||||
|
|
||||||
Versions known to exist but not dumped: v2.0
|
|
||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
@ -337,6 +335,23 @@ MACHINE_DRIVER_END
|
|||||||
*
|
*
|
||||||
*************************************/
|
*************************************/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
Pacman - 25th Anniversary Edition
|
||||||
|
*/
|
||||||
|
|
||||||
|
ROM_START( 25pacman ) /* Version 2.0 */
|
||||||
|
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||||
|
ROM_LOAD( "pacman_25th_rev2.0.u13", 0x00000, 0x40000, CRC(99a52784) SHA1(6222c2eb686e65ba23ca376ff4392be1bc826a03) )
|
||||||
|
|
||||||
|
ROM_REGION( 0x8000, "proms", 0 ) /* palette */
|
||||||
|
ROM_LOAD( "pacman_25th.u14", 0x0000, 0x8000, CRC(c19d9ad0) SHA1(002581fbc2c32cdf7cfb0b0f64061591a462ec14) ) /* Same as the MS. Pacman / Galaga graphics rom */
|
||||||
|
ROM_END
|
||||||
|
|
||||||
|
/*
|
||||||
|
Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion
|
||||||
|
*/
|
||||||
|
|
||||||
ROM_START( 20pacgal ) /* Version 1.08 */
|
ROM_START( 20pacgal ) /* Version 1.08 */
|
||||||
ROM_REGION( 0x100000, "maincpu", 0 )
|
ROM_REGION( 0x100000, "maincpu", 0 )
|
||||||
ROM_LOAD( "ms_pac-galaga_v1.08.u13", 0x00000, 0x40000, CRC(2ea16809) SHA1(27f041bdbb590917e9dcb70c21aa6b6d6c9f04fb) )
|
ROM_LOAD( "ms_pac-galaga_v1.08.u13", 0x00000, 0x40000, CRC(2ea16809) SHA1(27f041bdbb590917e9dcb70c21aa6b6d6c9f04fb) )
|
||||||
@ -385,6 +400,8 @@ static DRIVER_INIT(20pacgal)
|
|||||||
*
|
*
|
||||||
*************************************/
|
*************************************/
|
||||||
|
|
||||||
|
GAME( 2005, 25pacman, 0, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Pacman - 25th Anniversary Edition (V2.0)", GAME_NOT_WORKING)
|
||||||
|
|
||||||
GAME( 2000, 20pacgal, 0, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.08)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
GAME( 2000, 20pacgal, 0, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.08)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
||||||
GAME( 2000, 20pacgalr4, 20pacgal, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.04)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
GAME( 2000, 20pacgalr4, 20pacgal, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.04)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
||||||
GAME( 2000, 20pacgalr2, 20pacgal, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.02)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
GAME( 2000, 20pacgalr2, 20pacgal, 20pacgal, 20pacgal, 20pacgal, ROT90, "Namco", "Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.02)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE)
|
||||||
|
@ -983,6 +983,7 @@ const game_driver * const drivers[] =
|
|||||||
DRIVER( taiko10 )
|
DRIVER( taiko10 )
|
||||||
|
|
||||||
/* Misc Namco games */
|
/* Misc Namco games */
|
||||||
|
DRIVER( 25pacman ) /* (c) 2005 Ver 2.0 - Same hardware as 20pacgal */
|
||||||
DRIVER( 20pacgal ) /* (c) 2000 Ver 1.08 */
|
DRIVER( 20pacgal ) /* (c) 2000 Ver 1.08 */
|
||||||
DRIVER( 20pacgalr4 ) /* (c) 2000 Ver 1.04 */
|
DRIVER( 20pacgalr4 ) /* (c) 2000 Ver 1.04 */
|
||||||
DRIVER( 20pacgalr2 ) /* (c) 2000 Ver 1.02 */
|
DRIVER( 20pacgalr2 ) /* (c) 2000 Ver 1.02 */
|
||||||
|
Loading…
Reference in New Issue
Block a user