mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
play.cpp: verified that Third World and Night Fever share the same ROMs with Big Town and others [PinMAME]
This commit is contained in:
parent
67419bd7c3
commit
13bcbc7d99
@ -18,7 +18,6 @@
|
||||
Ator (Video Dens)
|
||||
|
||||
Others not emulated (need roms):
|
||||
Night Fever (Sonic)
|
||||
Storm (Sonic)
|
||||
|
||||
Sir Lancelot (Peyper, 1994)
|
||||
@ -756,9 +755,6 @@ void peyper_state::init_wolfman()
|
||||
}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------
|
||||
/ Night Fever (1979)
|
||||
/-------------------------------------------------------------------*/
|
||||
|
||||
/*-------------------------------------------------------------------
|
||||
/ Odin (1985)
|
||||
|
@ -531,6 +531,15 @@ ROM_START(lastlap)
|
||||
ROM_LOAD("lastlapb.bin", 0x0400, 0x0400, CRC(5e2ba9c0) SHA1(abd285aa5702c7fb84257b4341f64ff83c1fc0ce))
|
||||
ROM_END
|
||||
|
||||
/*-------------------------------------------------------------------
|
||||
/ Third World (??/78)
|
||||
/-------------------------------------------------------------------*/
|
||||
ROM_START(thrdwrld)
|
||||
ROM_REGION(0x800, "roms", 0)
|
||||
ROM_LOAD("3rdwrlda.bin", 0x0000, 0x0400, CRC(253f1b93) SHA1(7ff5267d0dfe6ae19ec6b0412902f4ce83f23ed1))
|
||||
ROM_LOAD("3rdwrldb.bin", 0x0400, 0x0400, CRC(5e2ba9c0) SHA1(abd285aa5702c7fb84257b4341f64ff83c1fc0ce))
|
||||
ROM_END
|
||||
|
||||
/*-------------------------------------------------------------------
|
||||
/ Chance (09/78)
|
||||
/-------------------------------------------------------------------*/
|
||||
@ -550,10 +559,21 @@ ROM_START(party)
|
||||
ROM_LOAD("party_b.bin", 0x0400, 0x0400, CRC(5e2ba9c0) SHA1(abd285aa5702c7fb84257b4341f64ff83c1fc0ce))
|
||||
ROM_END
|
||||
|
||||
/*-------------------------------------------------------------------
|
||||
/ Night Fever (??/79)
|
||||
/-------------------------------------------------------------------*/
|
||||
ROM_START(ngtfever)
|
||||
ROM_REGION(0x800, "roms", 0)
|
||||
ROM_LOAD("nfevera.bin", 0x0000, 0x0400, CRC(253f1b93) SHA1(7ff5267d0dfe6ae19ec6b0412902f4ce83f23ed1))
|
||||
ROM_LOAD("nfeverb.bin", 0x0400, 0x0400, CRC(5e2ba9c0) SHA1(abd285aa5702c7fb84257b4341f64ff83c1fc0ce))
|
||||
ROM_END
|
||||
|
||||
/* Big Town, Last Lap and Party all reportedly share the same roms with different playfield/machine artworks */
|
||||
|
||||
/* Big Town, Last Lap, Night Fever, Party and Third World all reportedly share the same roms with different playfield/machine artworks */
|
||||
GAME(1978, bigtown, 0, play_1, play_1, play_1_state, empty_init, ROT0, "Playmatic", "Big Town", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1978, lastlap, bigtown, play_1, play_1, play_1_state, empty_init, ROT0, "Playmatic", "Last Lap", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1979, party, bigtown, play_1, play_1, play_1_state, empty_init, ROT0, "Playmatic", "Party", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1979, ngtfever, bigtown, play_1, play_1, play_1_state, empty_init, ROT0, "Sonic", "Night Fever", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1978, thrdwrld, bigtown, play_1, play_1, play_1_state, empty_init, ROT0, "Sonic", "Third World", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1978, spcgambl, 0, play_1, spcgambl, play_1_state, empty_init, ROT0, "Playmatic", "Space Gambler", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
GAME(1978, chance, 0, chance, chance, play_1_state, empty_init, ROT0, "Playmatic", "Chance", MACHINE_MECHANICAL | MACHINE_NOT_WORKING )
|
||||
|
@ -31889,8 +31889,10 @@ plan80 //
|
||||
bigtown //
|
||||
chance //
|
||||
lastlap //
|
||||
ngtfever //
|
||||
party //
|
||||
spcgambl //
|
||||
thrdwrld //
|
||||
|
||||
@source:play_2.cpp
|
||||
antar //
|
||||
|
Loading…
Reference in New Issue
Block a user