summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2009-06-07 12:25:08 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2009-06-07 12:25:08 +0000
commit675fc3fd8e9bea7035d18defb75bf38e9dcbac9a (patch)
treede0d184eb75e2b1f9dfd09c5642f852b5d1b57c6
parent16db298ad2c89f8b0612b3801ae449fd728aaa81 (diff)
Fixed a number of year listings known to be unknown or incorrect the current MAME source.
The source for these changes come from the book: Arcade TV Game List (Edition: Domestic and Overseas, 1971 - 2005) http://www.ampress.co.jp/pr_flyer.htm http://www.amazon.co.jp/gp/product/4990251210/ref=s9_simz_gw_s0_p14_t2?pf_rd_m=AN1VRQENFRJN5&pf_rd_s=center-1&pf_rd_r=118WBT92SAZ22V3E0XZC&pf_rd_t=101&pf_rd_p=463376736&pf_rd_i=489986 Fujix took a good deal of time to go through pages and find many matches for games current in MAME with missing or incorrect data. I took the time this morning to verify and add the newly discovered dates as well as modifying mamedriv.c with the reference Page/Location of the entry in the book.
-rw-r--r--src/mame/drivers/aleck64.c8
-rw-r--r--src/mame/drivers/beaminv.c2
-rw-r--r--src/mame/drivers/bogeyman.c2
-rw-r--r--src/mame/drivers/gal3.c2
-rw-r--r--src/mame/drivers/galaxold.c2
-rw-r--r--src/mame/drivers/galdrvr.c6
-rw-r--r--src/mame/drivers/kyugo.c2
-rw-r--r--src/mame/drivers/laserbas.c2
-rw-r--r--src/mame/drivers/m10.c6
-rw-r--r--src/mame/drivers/metro.c4
-rw-r--r--src/mame/drivers/model2.c2
-rw-r--r--src/mame/drivers/naomi.c2
-rw-r--r--src/mame/drivers/ninjakd2.c2
-rw-r--r--src/mame/drivers/nova2001.c4
-rw-r--r--src/mame/drivers/scregg.c2
-rw-r--r--src/mame/drivers/shougi.c4
-rw-r--r--src/mame/drivers/tokyocop.c2
-rw-r--r--src/mame/mamedriv.c65
18 files changed, 60 insertions, 59 deletions
diff --git a/src/mame/drivers/aleck64.c b/src/mame/drivers/aleck64.c
index 55e1ffb5d6b..a174feef63b 100644
--- a/src/mame/drivers/aleck64.c
+++ b/src/mame/drivers/aleck64.c
@@ -627,8 +627,8 @@ GAME( 1998, starsldr, aleck64, aleck64, starsldr, aleck64, ROT0, "Hudson/Seta",
GAME( 1998, vivdolls, aleck64, aleck64, aleck64, aleck64, ROT0, "Visco", "Vivid Dolls", GAME_IMPERFECT_GRAPHICS )
GAME( 1999, srmvs, aleck64, aleck64, aleck64, aleck64, ROT0, "Seta", "Super Real Mahjong VS", GAME_NOT_WORKING|GAME_NO_SOUND )
GAME( 2003, twrshaft, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze", "Tower & Shaft", GAME_NOT_WORKING|GAME_NO_SOUND )
-GAME( 200?, hipai, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Hi Pai Paradise", GAME_NOT_WORKING|GAME_NO_SOUND )
-GAME( 200?, doncdoon, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Donchan no Hanabi de Doon", GAME_NOT_WORKING|GAME_NO_SOUND )
-GAME( 200?, kurufev, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Kurukuru Fever", GAME_NOT_WORKING|GAME_NO_SOUND )
-GAME( 200?, mayjin3, aleck64, aleck64, aleck64, aleck64, ROT0, "Seta?", "Mayjinsen 3", GAME_NOT_WORKING|GAME_NO_SOUND )
+GAME( 2003, hipai, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Hi Pai Paradise", GAME_NOT_WORKING|GAME_NO_SOUND )
+GAME( 2003, doncdoon, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Donchan no Hanabi de Doon", GAME_NOT_WORKING|GAME_NO_SOUND )
+GAME( 2003, kurufev, aleck64, aleck64, aleck64, aleck64, ROT0, "Aruze?", "Kurukuru Fever", GAME_NOT_WORKING|GAME_NO_SOUND )
+GAME( 2000, mayjin3, aleck64, aleck64, aleck64, aleck64, ROT0, "Seta", "Mayjinsen 3", GAME_NOT_WORKING|GAME_NO_SOUND )
diff --git a/src/mame/drivers/beaminv.c b/src/mame/drivers/beaminv.c
index cc86464beb9..eed88bd5d41 100644
--- a/src/mame/drivers/beaminv.c
+++ b/src/mame/drivers/beaminv.c
@@ -353,5 +353,5 @@ ROM_END
*
*************************************/
-GAME( 19??, beaminv, 0, beaminv, beaminv, 0, ROT270, "Tekunon Kougyou", "Beam Invader (set 1)", GAME_NO_SOUND | GAME_SUPPORTS_SAVE)
+GAME( 1979, beaminv, 0, beaminv, beaminv, 0, ROT270, "Tekunon Kougyou", "Beam Invader (set 1)", GAME_NO_SOUND | GAME_SUPPORTS_SAVE)
GAME( 1979, beaminva, beaminv, beaminv, beaminva, 0, ROT270, "Tekunon Kougyou", "Beam Invader (set 2)", GAME_NO_SOUND | GAME_SUPPORTS_SAVE) // what's the real title ?
diff --git a/src/mame/drivers/bogeyman.c b/src/mame/drivers/bogeyman.c
index e1d1dc3d51a..b1d6123e3fe 100644
--- a/src/mame/drivers/bogeyman.c
+++ b/src/mame/drivers/bogeyman.c
@@ -281,4 +281,4 @@ ROM_END
/* Game Driver */
-GAME( 1985?, bogeyman, 0, bogeyman, bogeyman, 0, ROT0, "Technos Japan", "Bogey Manor", GAME_IMPERFECT_COLORS )
+GAME( 1985, bogeyman, 0, bogeyman, bogeyman, 0, ROT0, "Technos Japan", "Bogey Manor", GAME_IMPERFECT_COLORS )
diff --git a/src/mame/drivers/gal3.c b/src/mame/drivers/gal3.c
index 0339f21fded..f9a01fc58b9 100644
--- a/src/mame/drivers/gal3.c
+++ b/src/mame/drivers/gal3.c
@@ -353,4 +353,4 @@ ROM_START( gal3 )
DISK_IMAGE_READONLY( "gal3_ld2", 0, NO_DUMP )
ROM_END
-GAME( 199?, gal3, 0, gal3, gal3, 0, ROT0, "Namco", "Galaxian 3 - Theater 6 : Project Dragoon", GAME_NOT_WORKING | GAME_NO_SOUND )
+GAME( 1992, gal3, 0, gal3, gal3, 0, ROT0, "Namco", "Galaxian 3 - Theater 6 : Project Dragoon", GAME_NOT_WORKING | GAME_NO_SOUND )
diff --git a/src/mame/drivers/galaxold.c b/src/mame/drivers/galaxold.c
index ca2c30cc335..656440278bd 100644
--- a/src/mame/drivers/galaxold.c
+++ b/src/mame/drivers/galaxold.c
@@ -3024,4 +3024,4 @@ GAME( 1985, hexpoola, racknrol, hexpoola, racknrol, 0, ROT90, "Senko", "H
GAME( 1985, trvchlng, 0, racknrol, trvchlng, 0, ROT90, "Joyland (Senko License)", "Trivia Challenge", GAME_NOT_WORKING | GAME_SUPPORTS_SAVE )
GAME( 1981, ckongg, 0, ckongg, ckongg, 0, ROT90, "bootleg", "Crazy Kong (bootleg on Galaxian hardware, set 1)", GAME_SUPPORTS_SAVE )
GAME( 1981, kkgalax, ckongg, kkgalax, kkgalax, 0, ROT90, "bootleg", "Crazy Kong (bootleg on Galaxian hardware, set 2)", GAME_NO_SOUND | GAME_SUPPORTS_SAVE ) // set was marked as 'King Kong on Galaxian'
-GAME( 19??, porter, 0, mooncrst, porter, 0, ROT90, "[Nova Games Ltd.] (bootleg)", "Port Man (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_GRAPHICS ) // missing GFX bank switch!
+GAME( 1982, porter, 0, mooncrst, porter, 0, ROT90, "[Nova Games Ltd.] (bootleg)", "Port Man (bootleg on Moon Cresta hardware)", GAME_IMPERFECT_GRAPHICS ) // missing GFX bank switch!
diff --git a/src/mame/drivers/galdrvr.c b/src/mame/drivers/galdrvr.c
index 9403a8a6d1c..f5b9cf27afc 100644
--- a/src/mame/drivers/galdrvr.c
+++ b/src/mame/drivers/galdrvr.c
@@ -4997,7 +4997,7 @@ GAME( 19??, tst_galx, galaxian, galaxian, galaxian, galaxian, ROT90, "Test ROM"
/* other games on basic galaxian hardware */
GAME( 1981, blkhole, 0, galaxian, blkhole, galaxian, ROT90, "TDS", "Black Hole", GAME_SUPPORTS_SAVE )
-GAME( 19??, orbitron, 0, galaxian, orbitron, galaxian, ROT270, "Signatron USA", "Orbitron", GAME_SUPPORTS_SAVE )
+GAME( 1982, orbitron, 0, galaxian, orbitron, galaxian, ROT270, "Signatron USA", "Orbitron", GAME_SUPPORTS_SAVE )
GAME( 1980, luctoday, 0, galaxian, luctoday, galaxian, ROT270, "Sigma", "Lucky Today",GAME_WRONG_COLORS | GAME_SUPPORTS_SAVE )
GAME( 19??, chewing, luctoday, galaxian, luctoday, galaxian, ROT90, "unknown", "Chewing Gum", GAME_SUPPORTS_SAVE )
GAME( 1982, catacomb, 0, galaxian, catacomb, galaxian, ROT90, "MTM Games", "Catacomb", GAME_WRONG_COLORS | GAME_SUPPORTS_SAVE )
@@ -5005,7 +5005,7 @@ GAME( 19??, omega, theend, galaxian, omega, galaxian, ROT270, "bootleg?"
/* these games require the coin lockout mechanism to be disabled */
GAME( 1981, warofbug, 0, galaxian, warofbug, nolock, ROT90, "Armenia", "War of the Bugs or Monsterous Manouvers in a Mushroom Maze", GAME_SUPPORTS_SAVE )
-GAME( 19??, redufo, 0, galaxian, redufo, nolock, ROT90, "bootleg", "Defend the Terra Attack on the Red UFO", GAME_SUPPORTS_SAVE )
+GAME( 1981, redufo, 0, galaxian, redufo, nolock, ROT90, "bootleg", "Defend the Terra Attack on the Red UFO", GAME_SUPPORTS_SAVE )
GAME( 19??, exodus, redufo, galaxian, exodus, nolock, ROT90, "Subelectro", "Exodus (bootleg?)", GAME_SUPPORTS_SAVE )
/* different bullet color */
@@ -5155,7 +5155,7 @@ GAME( 19??, scorpnmc, scorpion, mooncrst, scorpnmc, scorpnmc, ROT90, "Dorneer",
/* SF-X hardware; based on Scramble with extra Z80 and 8255 driving a DAC-based sample player */
GAME( 1983, sfx, 0, sfx, sfx, sfx, ORIENTATION_FLIP_X, "Nichibutsu", "SF-X", GAME_SUPPORTS_SAVE )
GAME( 1983, skelagon, sfx, sfx, sfx, sfx, ORIENTATION_FLIP_X, "Nichibutsu USA", "Skelagon", GAME_NOT_WORKING | GAME_SUPPORTS_SAVE)
-GAME( 198?, monsterz, 0, sfx, sfx, sfx, ORIENTATION_FLIP_X, "Nihon", "Monster Zero", GAME_UNEMULATED_PROTECTION | GAME_IMPERFECT_SOUND | GAME_NOT_WORKING )
+GAME( 1982, monsterz, 0, sfx, sfx, sfx, ORIENTATION_FLIP_X, "Nihon", "Monster Zero", GAME_UNEMULATED_PROTECTION | GAME_IMPERFECT_SOUND | GAME_NOT_WORKING )
/* scobra */
diff --git a/src/mame/drivers/kyugo.c b/src/mame/drivers/kyugo.c
index b67b57b7b22..69b47803552 100644
--- a/src/mame/drivers/kyugo.c
+++ b/src/mame/drivers/kyugo.c
@@ -1239,7 +1239,7 @@ GAME( 1985, flashgal, 0, flashgal, flashgal, 0, ROT0, "Sega", "Fl
GAME( 1985, flashgla, flashgal, flashgla, flashgal, 0, ROT0, "Sega", "Flashgal (set 2)", 0 )
GAME( 1986, srdmissn, 0, srdmissn, srdmissn, srdmissn, ROT90, "Taito Corporation", "S.R.D. Mission", 0 )
GAME( 1986, fx, srdmissn, srdmissn, srdmissn, srdmissn, ROT90, "bootleg", "F-X", 0 )
-GAME( 1986?,legend, 0, legend, legend, srdmissn, ROT0, "Sega / Coreland ?", "Legend", 0 )
+GAME( 1986, legend, 0, legend, legend, srdmissn, ROT0, "Sega / Coreland ?", "Legend", 0 )
GAME( 1987, airwolf, 0, srdmissn, airwolf, srdmissn, ROT0, "Kyugo", "Airwolf", 0 )
GAME( 1987, airwolfa, airwolf, srdmissn, airwolf, srdmissn, ROT0, "Kyugo (UA Theatre license)", "Airwolf (US)", 0 )
GAME( 1987, skywolf, airwolf, srdmissn, skywolf, srdmissn, ROT0, "bootleg", "Sky Wolf (set 1)", 0 )
diff --git a/src/mame/drivers/laserbas.c b/src/mame/drivers/laserbas.c
index fa78c398e6e..2e0e27472a0 100644
--- a/src/mame/drivers/laserbas.c
+++ b/src/mame/drivers/laserbas.c
@@ -238,4 +238,4 @@ ROM_END
GAME( 1981, laserbas, 0, laserbas, laserbas, 0, ROT270, "Amstar/HOEI", "Laser Base (set 1)", GAME_NO_SOUND | GAME_NOT_WORKING)
GAME( 1981, laserbsa, laserbas, laserbas, laserbas, 0, ROT270, "Amstar/HOEI", "Laser Base (set 2)", GAME_NO_SOUND | GAME_NOT_WORKING )
-GAME( 19??, futflash, laserbas, laserbas, laserbas, 0, ROT270, "HOEI", "Future Flash", GAME_NO_SOUND | GAME_NOT_WORKING)
+GAME( 1981, futflash, laserbas, laserbas, laserbas, 0, ROT270, "HOEI", "Future Flash", GAME_NO_SOUND | GAME_NOT_WORKING)
diff --git a/src/mame/drivers/m10.c b/src/mame/drivers/m10.c
index cee4288b1f4..f550bf30eb5 100644
--- a/src/mame/drivers/m10.c
+++ b/src/mame/drivers/m10.c
@@ -1040,9 +1040,9 @@ ROM_START( greenber )
ROM_END
GAME( 1979, andromed, 0, m11, skychut, andromed, ROT270, "Irem", "Andromeda (Japan?)", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS | GAME_NOT_WORKING )
-GAME( 1979?,ipminvad, 0, m10, ipminvad, 0, ROT270, "Irem", "I P M Invader", GAME_NO_COCKTAIL | GAME_IMPERFECT_COLORS )
-GAME( ????, ipminva1, 0, m10, ipminvad, ipminva1, ROT270, "Irem", "I P M Invader (Incomplete Dump)", GAME_NOT_WORKING )
+GAME( 1979, ipminvad, 0, m10, ipminvad, 0, ROT270, "Irem", "I P M Invader", GAME_NO_COCKTAIL | GAME_IMPERFECT_COLORS )
+GAME( 1979, ipminva1, 0, m10, ipminvad, ipminva1, ROT270, "Irem", "I P M Invader (Incomplete Dump)", GAME_NOT_WORKING )
GAME( 1980, skychut, 0, m11, skychut, 0, ROT270, "Irem", "Sky Chuter", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS )
GAME( 1979, spacbeam, 0, m15, spacbeam, 0, ROT270, "Irem", "Space Beam", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS )
-GAME( 1979?,headoni, 0, headoni, headoni, 0, ROT270, "Irem", "Head On (Irem, M-15 Hardware)", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS )
+GAME( 1979, headoni, 0, headoni, headoni, 0, ROT270, "Irem", "Head On (Irem, M-15 Hardware)", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS )
GAME( 1980, greenber, 0, m15, spacbeam, 0, ROT270, "Irem", "Green Beret (Irem)", GAME_NO_COCKTAIL | GAME_NO_SOUND | GAME_IMPERFECT_COLORS | GAME_NOT_WORKING )
diff --git a/src/mame/drivers/metro.c b/src/mame/drivers/metro.c
index 46ddb8006ef..91bdc053178 100644
--- a/src/mame/drivers/metro.c
+++ b/src/mame/drivers/metro.c
@@ -5828,8 +5828,8 @@ GAME( 1992, karatour, 0, karatour, karatour, karatour, ROT0, "Mitchell"
GAME( 1992, pangpoms, 0, pangpoms, pangpoms, metro, ROT0, "Metro", "Pang Pom's", 0 )
GAME( 1992, pangpomm, pangpoms, pangpoms, pangpoms, metro, ROT0, "Metro (Mitchell license)", "Pang Pom's (Mitchell)", 0 )
GAME( 1992, skyalert, 0, skyalert, skyalert, metro, ROT270, "Metro", "Sky Alert", 0 )
-GAME( 1993?,ladykill, 0, karatour, ladykill, karatour, ROT90, "Yanyaka (Mitchell license)", "Lady Killer", GAME_IMPERFECT_GRAPHICS )
-GAME( 1993?,moegonta, ladykill, karatour, moegonta, karatour, ROT90, "Yanyaka", "Moeyo Gonta!! (Japan)", GAME_IMPERFECT_GRAPHICS )
+GAME( 1993, ladykill, 0, karatour, ladykill, karatour, ROT90, "Yanyaka (Mitchell license)", "Lady Killer", GAME_IMPERFECT_GRAPHICS )
+GAME( 1993, moegonta, ladykill, karatour, moegonta, karatour, ROT90, "Yanyaka", "Moeyo Gonta!! (Japan)", GAME_IMPERFECT_GRAPHICS )
GAME( 1993, poitto, 0, poitto, poitto, metro, ROT0, "Metro / Able Corp.", "Poitto!", 0 )
GAME( 1994, blzntrnd, 0, blzntrnd, blzntrnd, blzntrnd, ROT0, "Human Amusement", "Blazing Tornado", GAME_IMPERFECT_GRAPHICS )
GAME( 1994, dharma, 0, dharma, dharma, metro, ROT0, "Metro", "Dharma Doujou", 0 )
diff --git a/src/mame/drivers/model2.c b/src/mame/drivers/model2.c
index d16f7e828f3..318eab044f2 100644
--- a/src/mame/drivers/model2.c
+++ b/src/mame/drivers/model2.c
@@ -4522,7 +4522,7 @@ GAME( 1997, zerogunj, zerogun, model2b, model2, zerogun, ROT0, "Psikyo", "Zero
GAME( 1998, dynmcopb, dynamcop, model2b, model2, genprot, ROT0, "Sega", "Dynamite Cop (Export, Model 2B)", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
GAME( 1998, dyndek2b, dynamcop, model2b, model2, genprot, ROT0, "Sega", "Dynamite Deka 2 (Japan, Model 2B)", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
GAME( 1998, pltkids, 0, model2b, model2, pltkids, ROT0, "Psikyo", "Pilot Kids (Model 2B, Revision A)", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
-GAME( 199?, rchase2, 0, model2b, model2, 0, ROT0, "Sega", "Rail Chase 2 (Revision A)", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
+GAME( 1995, rchase2, 0, model2b, model2, 0, ROT0, "Sega", "Rail Chase 2 (Revision A)", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
// Model 2C-CRX (TGPx4, SCSP sound board)
GAME( 1996, skisuprg, 0, model2c, model2, 0, ROT0, "Sega", "Sega Ski Super G", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
diff --git a/src/mame/drivers/naomi.c b/src/mame/drivers/naomi.c
index be3c9eb3f2e..21400c82d74 100644
--- a/src/mame/drivers/naomi.c
+++ b/src/mame/drivers/naomi.c
@@ -4480,7 +4480,7 @@ GAME( 2002, quizqgd, naomigd, naomigd, naomi, naomi, ROT270, "Amedio (T
//GDL-0018 Azumanga Daioh Puzzle Bobble
//GDL-0019 Guilty Gear XX #Reload
GAME( 2003, ggxxrl, naomigd, naomigd, naomi, ggxxrl, ROT0, "Arc System Works", "Guilty Gear XX #Reload (Rev A) (GDL-0019A)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
-GAME( 200?, tetkiwam, naomigd, naomigd, naomi, naomi, ROT0, "Success", "Tetris Kiwamemichi (GDL-0020)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
+GAME( 2004, tetkiwam, naomigd, naomigd, naomi, naomi, ROT0, "Success", "Tetris Kiwamemichi (GDL-0020)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
GAME( 2003, shikgam2, naomigd, naomigd, naomi, naomi, ROT270, "Alpha System", "Shikigami No Shiro II / The Castle of Shikigami II (GDL-0021)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
GAME( 2003, usagui, naomigd, naomigd, naomi_mp, naomi_mp,ROT0, "Warashi / Taito / Mahjong Kobo", "Usagi - Yamashiro Mahjong Hen (GDL-0022)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
//GDL-0023 Border Down
diff --git a/src/mame/drivers/ninjakd2.c b/src/mame/drivers/ninjakd2.c
index 407d6e1c626..dd2a1b50bd4 100644
--- a/src/mame/drivers/ninjakd2.c
+++ b/src/mame/drivers/ninjakd2.c
@@ -1474,7 +1474,7 @@ GAME( 1987, ninjak2a, ninjakd2, ninjakd2, ninjakd2, bootleg, ROT0, "UPL", "Ni
GAME( 1987, ninjak2b, ninjakd2, ninjakd2, rdaction, bootleg, ROT0, "UPL", "Ninja-Kid II / NinjaKun Ashura no Shou (set 3, bootleg?)", 0 )
GAME( 1987, rdaction, ninjakd2, ninjakd2, rdaction, ninjakd2, ROT0, "UPL (World Games license)", "Rad Action / NinjaKun Ashura no Shou", 0 )
GAME( 1987, mnight, 0, mnight, mnight, mnight, ROT0, "UPL (Kawakus license)", "Mutant Night", 0 )
-GAME( 1987, arkarea, 0, arkarea, arkarea, mnight, ROT0, "UPL", "Ark Area", 0 )
+GAME( 1988, arkarea, 0, arkarea, arkarea, mnight, ROT0, "UPL", "Ark Area", 0 )
GAME( 1988, robokid, 0, robokid, robokid, 0, ROT0, "UPL", "Atomic Robo-kid", 0 )
GAME( 1988, robokidj, robokid, robokid, robokidj, 0, ROT0, "UPL", "Atomic Robo-kid (Japan, set 1)", 0 )
GAME( 1988, robokdj2, robokid, robokid, robokidj, 0, ROT0, "UPL", "Atomic Robo-kid (Japan, set 2)", 0 )
diff --git a/src/mame/drivers/nova2001.c b/src/mame/drivers/nova2001.c
index b0a7bd3cbc1..f249dd82c80 100644
--- a/src/mame/drivers/nova2001.c
+++ b/src/mame/drivers/nova2001.c
@@ -1057,7 +1057,7 @@ static DRIVER_INIT( raiders5 )
GAME( 1983, nova2001, 0, nova2001, nova2001, 0, ROT0, "UPL", "Nova 2001 (Japan)", 0 )
GAME( 1983, nov2001u, nova2001, nova2001, nova2001, 0, ROT0, "UPL (Universal license)", "Nova 2001 (US)", 0 )
GAME( 1984, ninjakun, 0, ninjakun, ninjakun, 0, ROT0, "[UPL] (Taito license)", "Ninjakun Majou no Bouken", 0 )
-GAME( 1985?,pkunwar, 0, pkunwar, pkunwar, pkunwar, ROT0, "UPL", "Penguin-Kun Wars (US)", 0 )
-GAME( 1985?,pkunwarj, pkunwar, pkunwar, pkunwar, pkunwar, ROT0, "UPL", "Penguin-Kun Wars (Japan)", 0 )
+GAME( 1985, pkunwar, 0, pkunwar, pkunwar, pkunwar, ROT0, "UPL", "Penguin-Kun Wars (US)", 0 )
+GAME( 1985, pkunwarj, pkunwar, pkunwar, pkunwar, pkunwar, ROT0, "UPL", "Penguin-Kun Wars (Japan)", 0 )
GAME( 1985, raiders5, 0, raiders5, raiders5, raiders5, ROT0, "UPL", "Raiders5", 0 )
GAME( 1985, raidrs5t, raiders5, raiders5, raiders5, raiders5, ROT0, "UPL (Taito license)", "Raiders5 (Japan)", 0 )
diff --git a/src/mame/drivers/scregg.c b/src/mame/drivers/scregg.c
index ff0a4bf5ae9..2deb292622f 100644
--- a/src/mame/drivers/scregg.c
+++ b/src/mame/drivers/scregg.c
@@ -369,7 +369,7 @@ static DRIVER_INIT( rockduck )
}
-GAME( 198?, dommy, 0, dommy, scregg, 0, ROT270, "Technos Japan", "Dommy", 0 )
+GAME( 1983, dommy, 0, dommy, scregg, 0, ROT270, "Technos Japan", "Dommy", 0 )
GAME( 1983, scregg, 0, scregg, scregg, 0, ROT270, "Technos Japan", "Scrambled Egg", 0 )
GAME( 1983, eggs, scregg, scregg, scregg, 0, ROT270, "[Technos Japan] Universal USA", "Eggs", 0 )
GAME( 1983, rockduck, 0, scregg, rockduck, rockduck, ROT270, "Datel SAS", "Rock Duck (prototype?)", GAME_WRONG_COLORS )
diff --git a/src/mame/drivers/shougi.c b/src/mame/drivers/shougi.c
index 32b91479cd0..cb2a2689eaf 100644
--- a/src/mame/drivers/shougi.c
+++ b/src/mame/drivers/shougi.c
@@ -459,5 +459,5 @@ ROM_END
-GAME( 1982?, shougi, 0, shougi, shougi, 0, ROT0, "Alpha Denshi Co.", "Shougi", 0 )
-GAME( 1982?, shougi2, shougi, shougi, shougi2, 0, ROT0, "Alpha Denshi Co.", "Shougi 2", 0 )
+GAME( 1982, shougi, 0, shougi, shougi, 0, ROT0, "Alpha Denshi Co.", "Shougi", 0 )
+GAME( 1982, shougi2, shougi, shougi, shougi2, 0, ROT0, "Alpha Denshi Co.", "Shougi 2", 0 )
diff --git a/src/mame/drivers/tokyocop.c b/src/mame/drivers/tokyocop.c
index c0ecea9d30c..821cf40d1fd 100644
--- a/src/mame/drivers/tokyocop.c
+++ b/src/mame/drivers/tokyocop.c
@@ -65,4 +65,4 @@ ROM_START(tokyocop)
ROM_END
-GAME( 200?, tokyocop, 0, tokyocop, tokyocop, 0, ROT0, "Gaelco", "Tokyo Cop (Italy)", GAME_NOT_WORKING|GAME_NO_SOUND )
+GAME( 2003, tokyocop, 0, tokyocop, tokyocop, 0, ROT0, "Gaelco", "Tokyo Cop (Italy)", GAME_NOT_WORKING|GAME_NO_SOUND )
diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c
index 47543850840..bc891c8d79c 100644
--- a/src/mame/mamedriv.c
+++ b/src/mame/mamedriv.c
@@ -167,7 +167,7 @@ const game_driver * const drivers[] =
DRIVER( skyraidr ) /* bootleg */
DRIVER( batman2 ) /* bootleg */
DRIVER( warofbug ) /* (c) 1981 Armenia */
- DRIVER( redufo ) /* bootleg - original should be (c) Artic */
+ DRIVER( redufo ) /* bootleg - original should be (c) Artic / Arcade TV Game List (P.104, Left, 25 from top) */
DRIVER( exodus ) /* Subelectro - bootleg? */
DRIVER( streakng ) /* [1980] Shoei */
DRIVER( pacmanbl ) /* bootleg */
@@ -178,7 +178,7 @@ const game_driver * const drivers[] =
DRIVER( jumpbugb ) /* (c) 1981 Sega */
DRIVER( levers ) /* (c) 1983 Rock-ola */
DRIVER( azurian ) /* (c) 1982 Rait Electronics Ltd */
- DRIVER( orbitron ) /* Signatron USA */
+ DRIVER( orbitron ) /* (c) 1982 Signatron USA (Arcade Tv Game List - P.160, Left, 22 from top) */
DRIVER( mooncrgx ) /* bootleg */
DRIVER( mooncrst ) /* (c) 1980 Nichibutsu */
DRIVER( mooncrsu ) /* (c) 1980 Nichibutsu USA */
@@ -232,9 +232,9 @@ const game_driver * const drivers[] =
DRIVER( luctoday ) /* 1980 Sigma */
DRIVER( chewing ) /* ?? unknown */
DRIVER( catacomb ) /* 1982 MTM Games */
- DRIVER( ckongg ) /* 1981 bootleg */
- DRIVER( kkgalax ) /* 1981 bootleg */
- DRIVER( porter ) /* 19?? bootleg */
+ DRIVER( ckongg ) /* 1981 bootleg */
+ DRIVER( kkgalax ) /* 1981 bootleg */
+ DRIVER( porter ) /* 1982 bootleg (Arcade TV Game List - P.98, Left, 15 from bottom) */
/* Has some similarities with Moon Cresta but Board is very different */
DRIVER( rockclim ) /* (c)1981 Taito */
@@ -273,7 +273,7 @@ const game_driver * const drivers[] =
DRIVER( cavelon ) /* (c) 1983 Jetsoft */
DRIVER( sfx ) /* (c) 1983 Nichibutsu */
DRIVER( skelagon ) /* (c) 1983 Nichibutsu USA */
- DRIVER( monsterz ) /* (c) 198? Nihon */
+ DRIVER( monsterz ) /* (c) 1982 Nihon (Arcade TV Game List - P.102, Left, 20 from top) */
DRIVER( mimonscr ) /* Universal Video Games */
DRIVER( mimonkey ) /* bootleg */
DRIVER( mimonsco ) /* bootleg */
@@ -867,7 +867,7 @@ const game_driver * const drivers[] =
DRIVER( cybsledj ) /* (c) 1993 */
/* Galaxian 3 HW */
- DRIVER( gal3 )
+ DRIVER( gal3 ) /* (c) 1992 (Arcade TV Game List - P.73, Right, 6 from top) */
/* Namco System 22 games */
DRIVER( ridgerac ) /* (c) 1993 */
@@ -1383,13 +1383,13 @@ const game_driver * const drivers[] =
/* Irem games */
/* trivia: IREM means "International Rental Electronics Machines" */
DRIVER( andromed ) /* (c) 1979 */
- DRIVER( ipminvad ) /* M10 no copyright notice */
+ DRIVER( ipminvad ) /* M10 no copyright notice (Arcade TV Game List - P.67, Left, 26 from top) */
DRIVER( ipminva1 ) /* M10 incomplete dump */
DRIVER( ptrmj ) /* M14 (c) 1979 */
DRIVER( skychut ) /* Irem [1980] */
DRIVER( spacbeam ) /* M15 no copyright notice */
DRIVER( greenber ) /* Irem */
- DRIVER( headoni ) /* Irem no copyright notice */
+ DRIVER( headoni ) /* Irem no copyright notice (1979 - Arcade TV Game List - P.98, Left, 7 from top ) */
DRIVER( redalert ) /* (c) 1981 + "GDI presents" */
DRIVER( demoneye ) /* (c) 1981 */
@@ -2319,7 +2319,7 @@ V-V TP-027
DRIVER( flashgla ) /* (c) 1985 Sega */
DRIVER( srdmissn ) /* (c) 1986 Taito Corporation */
DRIVER( fx ) /* bootleg */
- DRIVER( legend ) /* no copyright notice [1986 Sega/Coreland?] */
+ DRIVER( legend ) /* no copyright notice [1986 Sega/Coreland] (Arcade TV Game List - P.104, Left, 14 from top) */
DRIVER( airwolf ) /* (c) 1987 Kyugo */
DRIVER( airwolfa ) /* (c) 1987 Kyugo */
DRIVER( skywolf ) /* bootleg */
@@ -4059,7 +4059,7 @@ DokiDoki Penguin Land *not confirmed
/* Model 2B-CRX (SHARC, SCSP sound board) */
DRIVER( vstriker ) /* 1995.05 virtua Striker */
DRIVER( vstrikro )
- DRIVER( rchase2 ) /* 1995.06 Rail Chase 2 */
+ DRIVER( rchase2 ) /* 1995.06 Rail Chase 2 (Arcade TV Game List - P.104, Left, 12 from top) */
DRIVER( indy500 ) /* 1995.07 Indy 500 */
DRIVER( indy500d )
DRIVER( skytargt ) /* 1995.10 Sky Target */
@@ -4410,7 +4410,7 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
/* 2003.07 Yonin Uchi Mahjong MJ Network Taisen ver. NEW */
DRIVER( psyvar2 ) /* 2003.11 Psyvariar 2 */
DRIVER( puyofev ) /* 2003.11 Puyopuyo Fever */
- DRIVER( tetkiwam ) /* 2004.06 Tetris Kiwamemichi */
+ DRIVER( tetkiwam ) /* 2004.06 Tetris Kiwamemichi (Arcade TV Game List - P.88, Right, 11 from bottom) */
DRIVER( cfield ) /* 2004.06 Chaos Field */
DRIVER( trizeal ) /* 2004.09 Trizeal */
/* 2005.03 Melty Blood Act Cadenza */
@@ -6393,8 +6393,8 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
DRIVER( buriki ) /* 007 1999/05/21 Buriki One */
/* Alpha Denshi games */
- DRIVER( shougi )
- DRIVER( shougi2 )
+ DRIVER( shougi ) /* (c) 1982 (Arcade TV Game List - P.80, Left, 9 from top) */
+ DRIVER( shougi2 ) /* (c) 1982 (Arcade TV Game List - P.80, Left, 10 from top) */
DRIVER( champbas ) /* (c) 1983 Sega */
DRIVER( champbbj ) /* (c) 1983 Alpha Denshi Co. */
DRIVER( champbja ) /* (c) 1983 Alpha Denshi Co. */
@@ -6442,7 +6442,7 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
/* Technos games */
DRIVER( scregg ) /* TA-0001 (c) 1983 */
DRIVER( eggs ) /* TA-0002 (c) 1983 Universal USA */
- DRIVER( dommy ) /* TA-00?? (c) */
+ DRIVER( dommy ) /* TA-00?? (c) 1983 (Arcade TV Game List - P.90, Left, 13 from top) */
DRIVER( bigprowr ) /* TA-0007 (c) 1983 */
DRIVER( tagteam ) /* TA-0007 (c) 1983 + Data East license */
DRIVER( ssozumo ) /* TA-0008 (c) 1984 */
@@ -6450,7 +6450,7 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
DRIVER( myststno ) /* TA-0010 (c) 1984 */
DRIVER( dogfgt ) /* TA-0011 (c) 1984 */
DRIVER( dogfgtj ) /* TA-0011 (c) 1984 */
- DRIVER( bogeyman ) /* -0204-0 (Data East part number) (c) [1985?] */
+ DRIVER( bogeyman ) /* -0204-0 (Data East part number) (c) 1985 (Arcade TV Game List - P.96, Right, 8 from top) */
DRIVER( matmania ) /* TA-0015 (c) 1985 + Taito America license */
DRIVER( excthour ) /* TA-0015 (c) 1985 + Taito license */
DRIVER( maniach ) /* TA-0017 (c) 1986 + Taito America license */
@@ -6566,15 +6566,15 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
DRIVER( ninjakun ) /* UPL-84003 (c) 1984 Taito Corporation */
DRIVER( raiders5 ) /* UPL-85004 (c) 1985 */
DRIVER( raidrs5t ) /* UPL-85004 (c) 1985 Taito license */
- DRIVER( pkunwar ) /* UPL-????? [1985?] */
- DRIVER( pkunwarj ) /* UPL-????? [1985?] */
+ DRIVER( pkunwar ) /* UPL-????? (c) 1985 (Arcade Game TV List - P.98, Left, 22 from top) */
+ DRIVER( pkunwarj ) /* UPL-????? (c) 1985 (Arcade Game TV List - P.98, Left, 22 from top) */
DRIVER( xxmissio ) /* UPL-86001 [1986] */
DRIVER( ninjakd2 ) /* UPL-????? (c) 1987 */
DRIVER( ninjak2a ) /* UPL-????? (c) 1987 */
DRIVER( ninjak2b ) /* UPL-????? (c) 1987 */
DRIVER( rdaction ) /* UPL-87003?(c) 1987 + World Games license */
DRIVER( mnight ) /* UPL-????? (c) 1987 distributed by Kawakus */
- DRIVER( arkarea ) /* UPL-87007 (c) [1987] */
+ DRIVER( arkarea ) /* UPL-87007 (c) 1988 (Arcade TV Game List - P.67, Right, 2 from top)*/
DRIVER( robokid ) /* UPL-88013 (c) 1988 */
DRIVER( robokidj ) /* UPL-88013 (c) 1988 */
DRIVER( robokdj2 ) /* UPL-88013 (c) 1988 */
@@ -7312,7 +7312,7 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
*/
/* Galeco PC based games */
- DRIVER( tokyocop )
+ DRIVER( tokyocop ) /* (c) 2003 (Arcade TV Game List - P.168, Right, 19 from bottom) */
/* Kaneko games */
DRIVER( hvyunit ) /* (c) 1988 Kaneko */
@@ -7527,10 +7527,11 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11
DRIVER( vivdolls ) /* (c) 1998 Visco */
DRIVER( srmvs ) /* (c) 1999 Seta */
DRIVER( twrshaft ) /* (c) 2003 Aruze */
- DRIVER( hipai )
- DRIVER( doncdoon )
- DRIVER( kurufev )
- DRIVER( mayjin3 )
+ DRIVER( hipai ) /* (c) 2003 Seta/Aruze (Arcade TV Game List - P.92, Right, 16 from top) */
+ DRIVER( doncdoon ) /* (c) 2003 Aruze (Arcade TV Game List - P.90, Right, 8 from bottom) */
+ DRIVER( kurufev ) /* (c) 2003 Aruze (Arcade TV Game List - P.75, Right, 1st entry on top) */
+ DRIVER( mayjin3 ) /* (c) 2000 Seta (Arcade TV Game List - P.101, Right, 9 from top) */
+
/* Atlus games */
DRIVER( powerins ) /* (c) 1993 Atlus (USA) */
@@ -7696,8 +7697,8 @@ Other Sun games
/* Metro games */
DRIVER( karatour ) /* (c) 1992 Mitchell */
- DRIVER( ladykill ) /* Yanyaka + Mitchell license */
- DRIVER( moegonta ) /* Yanyaka (Japan) */
+ DRIVER( ladykill ) /* (c) 1993 Yanyaka + Mitchell license - (Arcade TV Game List - P.101, Right, 2 from Bottom) */
+ DRIVER( moegonta ) /* (c) 1993 Yanyaka (Japan) (Arcade TV Game List - P.101, Right, 2 from Bottom) */
DRIVER( pangpoms ) /* (c) 1992 */
DRIVER( pangpomm ) /* (c) 1992 Mitchell / Metro */
DRIVER( skyalert ) /* (c) 1992 */
@@ -7729,7 +7730,7 @@ Other Sun games
DRIVER( gstrik2 ) /* (c) 1996 Human Amusement */
DRIVER( hyprduel ) /* (c) 1993 Technosoft (World) */
DRIVER( hyprdelj ) /* (c) 1993 Technosoft (Japan) */
- DRIVER( magerror ) /* (c) 199? Technosoft (Japan) */
+ DRIVER( magerror ) /* (c) 1994 Technosoft (Japan) (Arcade TV Game List - P.100, Left, 13 from Bottom) */
DRIVER( puzzlet ) /* (c) 2000 Yunizu Corporation (Japan) */
/* Venture Line games */
@@ -8061,7 +8062,7 @@ Other Sun games
DRIVER( starcrus ) /* (c) 1977 Ramtek */
/* Omori games */
- DRIVER( shuttlei ) /* (c) 197? Omori */
+ DRIVER( shuttlei ) /* (c) 1979 Omori (Arcade Tv Game List - P.79, Left, 6 from bottom) */
DRIVER( battlex ) /* (c) 1982 Omori E. Co., Ltd. */
DRIVER( carjmbre ) /* (c) 1983 Omori Electric Co., Ltd. */
DRIVER( popper ) /* (c) 1983 Omori Electric Co., Ltd. */
@@ -8453,8 +8454,8 @@ Other Sun games
DRIVER( bbprot ) /* unfinished prototype */
DRIVER( flower ) /* (c) 1986 Komax */
DRIVER( flowers ) /* (c) 1986 Sega/Alpha */
- DRIVER( beaminv ) /* Tekunon Kougyou */
- DRIVER( beaminva ) /* Tekunon Kougyou */
+ DRIVER( beaminv ) /* (c) 1979 Teknon Kougyou (Arcade TV Game List - P.95, Left, 9 from top) */
+ DRIVER( beaminva ) /* (c) 1979 Teknon Kougyou (Arcade TV Game List - P.95, Left, 9 from top) */
DRIVER( mcatadv ) /* (c) 1993 Wintechno */
DRIVER( mcatadvj ) /* (c) 1993 Wintechno */
DRIVER( catt ) /* (c) 1993 Wintechno */
@@ -8657,7 +8658,7 @@ Other Sun games
DRIVER( megat5 ) /* (c) 1997 Merit */
DRIVER( megat5nj ) /* (c) 1997 Merit */
DRIVER( megat6 ) /* (c) 1998 Merit */
- DRIVER( suprgolf ) /* (c) 19?? Nasco */
+ DRIVER( suprgolf ) /* (c) 1989 Nasco */
DRIVER( hotblock ) /* (c) 1993 Nics? / Nix? */
DRIVER( pntnpuzl ) /* Century? */
DRIVER( trucocl ) /* (c) 1991 Miky SRL */
@@ -8674,7 +8675,7 @@ Other Sun games
DRIVER( mdrawpkr ) /* (c) 19?? */
DRIVER( laserbas ) /* (c) 1981 Amstar/HOEI */
DRIVER( laserbsa ) /* (c) 1981 Amstar/HOEI */
- DRIVER( futflash ) /* (c) 19?? HOEI */
+ DRIVER( futflash ) /* (c) 1981 HOEI (Arcade TV Game List - P.96, Right, 18 from top) */
DRIVER( turbosub ) /* (c) 1985 Entertainment Sciences */
DRIVER( turbosb7 ) /* (c) 1985 Entertainment Sciences */
DRIVER( turbosb6 ) /* (c) 1985 Entertainment Sciences */