diff --git a/.gitignore b/.gitignore index 6f5ace0..c41ea2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store -settings.json \ No newline at end of file +settings.json +__pycache__ diff --git a/python/fbneo_roms_by_manufacturer.py b/python/fbneo_roms_by_manufacturer.py deleted file mode 100644 index 5515e78..0000000 --- a/python/fbneo_roms_by_manufacturer.py +++ /dev/null @@ -1,256 +0,0 @@ -# Script para copiar roms a partir de un xml de fbneo -# Copia las roms por desarrollador y sin clones - -# Por hacer: -# pasar por parametro si se quieren clones - -import os -import shutil -import sys -import argparse -from xml.dom import minidom - - -# Elimina los caracteres ilegales de la cadena de texto -def normalize_path(path): - illegal_chars = ["<", ">", ":", '"', "/", "\\", "|", "?", "*"] - replace_with = "_" - for char in illegal_chars: - path = path.replace(char, replace_with) - return path - - -# Inicialización de las opciones -ignore_list = ["DECO Cassette", "Bootleg", "prototype", "Quiz", "Mahjong", "Demo"] -ignore_system = ["neogeo"] - -# Obtiene los argumentos -parser = argparse.ArgumentParser( - description="Gestiona las roms de fbneo por desarrolladores a partir de un fichero .dat" -) -group = parser.add_mutually_exclusive_group() -group.add_argument( - "-l", - "--list", - help="Muestra la lista de desarrolladores o de juegos", - action="store_true", -) -group.add_argument("-c", "--copy", help="Copia las roms", action="store_true") -parser.add_argument( - "-s", - "--sort", - help="Ordena los resultados por carpetas de desarrollador al copiar todas las roms", - action="store_true", -) -parser.add_argument( - "-cf", - "--create_folder", - help="Copia las roms dentro de la carpeta del desarrollador", - action="store_true", -) - -parser.add_argument("-m", "--manufacturer", help="Selecciona un desarrollador") -parser.add_argument( - "-d", "--dat", help="Ruta del fichero .dat con información de las roms" -) -parser.add_argument( - "-i", "--input", help="Ruta donde se encuentran las roms", default="" -) -parser.add_argument("-o", "--output", help="Ruta donde depositar las roms", default="") -args = parser.parse_args() - -# Importa el xml -if args.dat == None: - print("No se ha especificado un fichero .dat") - sys.exit(2) - -if not os.path.isfile(args.dat): - print("No se encuentra el fichero .dat") - sys.exit(2) - -print("Parsing {} file".format(args.dat)) -file = minidom.parse(args.dat) - -# Lista los desarrolladores -if args.list and args.manufacturer == None: - print("List of all manufacturers:") - manufacturers = [] - games = file.getElementsByTagName("game") - for game in games: - manufacturer = game.getElementsByTagName("manufacturer")[0] - manufacturers.append(manufacturer.firstChild.data) - - # Elimina los duplicados - manufacturers = list(dict.fromkeys(manufacturers)) - - # Ordena la lista - manufacturers.sort() - - # Imprime la lista - for i in manufacturers: - print(i) - -# Lista los juegos de un desarrollador -if args.list and args.manufacturer != None: - games = file.getElementsByTagName("game") - print("List of all", args.manufacturer, "games:", len(games)) - for game in games: - cloneof = game.getAttribute("cloneof") - isbios = game.getAttribute("isbios") - manufacturer = game.getElementsByTagName("manufacturer")[0] - description = game.getElementsByTagName("description")[0] - if ( - (manufacturer.firstChild.data == args.manufacturer - or args.manufacturer == 'all') - and not cloneof - and not isbios - ): - print(description.firstChild.data, '==>', game.getAttribute("name") + ".zip from", manufacturer.firstChild.data) - -# Copia los juegos del desarrollador seleccionado -if ( - args.copy - and os.path.isdir(args.input) - and os.path.isdir(args.output) - and args.manufacturer != None -): - # Comprueba si ha de crear la carpeta con el nombre del desarrollador - if args.create_folder: - normalized_manufacturer = normalize_path(args.manufacturer) - os.mkdir(os.path.join(args.output, args.manufacturer)) - - notfound = [] - ignored_games = [] - copied_games = [] - games = file.getElementsByTagName("game") - print("Copying all", args.manufacturer, "games:", len(games)) - for game in games: - isignored = False - name = game.getAttribute("name") + ".zip" - cloneof = game.getAttribute("cloneof") - isbios = game.getAttribute("isbios") - romof = game.getAttribute("romof") - manufacturer = game.getElementsByTagName("manufacturer")[0] - description = game.getElementsByTagName("description")[0] - driver = game.getElementsByTagName("driver") - status = ( - game.getElementsByTagName("driver")[0].getAttribute("status") - if driver - else "" - ) - if ( - manufacturer.firstChild.data == args.manufacturer - and not cloneof - and not isbios - and status == "good" - ): - for ignore_element in ignore_list: - if ignore_element.casefold() in description.firstChild.data.casefold(): - ignored_games.append(description.firstChild.data) - isignored = True - - for ignore_element in ignore_system: - if ignore_element.casefold() in romof.casefold(): - ignored_games.append(description.firstChild.data) - isignored = True - - if not isignored: - src = os.path.join(args.input, name) - if args.sort: - x = manufacturer.firstChild.data - x = x.replace(r"/", r"-") - dst = os.path.join(args.output, x, name) - if not os.path.isdir(os.path.join(args.output, x)): - os.mkdir(os.path.join(args.output, x)) - else: - if args.create_folder: - dst = os.path.join(args.output, normalized_manufacturer, name) - else: - dst = os.path.join(args.output, name) - - if os.path.isfile(src): - shutil.copyfile(src, dst) - copied_games.append(description.firstChild.data) - print(description.firstChild.data, '==>', game.getAttribute("name") + ".zip") - else: - notfound.append(description.firstChild.data) - - print("\nMissing games:", len(notfound)) - for game in notfound: - print(game) - - print("\nIgnored games:", len(ignored_games)) - for game in ignored_games: - print(game) - - print("\nCopied games: ", len(copied_games)) - print("Missing games:", len(notfound)) - print("Ignored games:", len(ignored_games)) - -# Copia todos los juegos -if ( - args.copy - and os.path.isdir(args.input) - and os.path.isdir(args.output) - and args.manufacturer == None -): - notfound = [] - ignored_games = [] - copied_games = [] - games = file.getElementsByTagName("game") - print("Copying all games:", len(games)) - for game in games: - isignored = False - name = game.getAttribute("name") + ".zip" - cloneof = game.getAttribute("cloneof") - isbios = game.getAttribute("isbios") - romof = game.getAttribute("romof") - manufacturer = game.getElementsByTagName("manufacturer")[0] - description = game.getElementsByTagName("description")[0] - driver = game.getElementsByTagName("driver") - status = ( - game.getElementsByTagName("driver")[0].getAttribute("status") - if driver - else "" - ) - - if not cloneof and not isbios and status == "good": - for ignore_element in ignore_list: - if ignore_element.casefold() in description.firstChild.data.casefold(): - ignored_games.append(description.firstChild.data) - isignored = True - - for ignore_element in ignore_system: - if ignore_element.casefold() in romof.casefold(): - ignored_games.append(description.firstChild.data) - isignored = True - - if not isignored: - src = os.path.join(args.input, name) - if args.sort: - x = manufacturer.firstChild.data - x = x.replace(r"/", r"-") - dst = os.path.join(args.output, x, name) - if not os.path.isdir(os.path.join(args.output, x)): - os.mkdir(os.path.join(args.output, x)) - else: - dst = os.path.join(args.output, name) - - if os.path.isfile(src): - shutil.copyfile(src, dst) - copied_games.append(description.firstChild.data) - print(description.firstChild.data) - else: - notfound.append(description.firstChild.data) - - print("\nMissing games:", len(notfound)) - for game in notfound: - print(game) - - print("\nIgnored games:", len(ignored_games)) - for game in ignored_games: - print(game) - - print("\nCopied games: ", len(copied_games)) - print("Missing games:", len(notfound)) - print("Ignored games:", len(ignored_games)) diff --git a/python/fbneo_roms_utils/FinalBurn Neo v1.0.0.02 (ClrMame Pro XML).dat b/python/fbneo_roms_utils/FinalBurn Neo v1.0.0.02 (ClrMame Pro XML).dat new file mode 100644 index 0000000..36643f0 --- /dev/null +++ b/python/fbneo_roms_utils/FinalBurn Neo v1.0.0.02 (ClrMame Pro XML).dat @@ -0,0 +1,172882 @@ + + + + +
+ FinalBurn Neo - Arcade Games + FinalBurn Neo v1.0.0.02 Arcade Games + Standard DatFile + 1.0.0.02 + FinalBurn Neo + https://neo-source.com/ + https://neo-source.com/ + +
+ + '88 Games + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + '96 Flag Rally + 1996 + unknown + + + + + + + + + + + + + + + + + '99: The Last War (bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + '99: The Last War (Kyugo) + 1985 + Crux / Kyugo + + + + + + + + + + + + + + + + + + + + + + + + + + + + '99: The Last War (set 1) + 1985 + Crux / Proma + + + + + + + + + + + + + + + + + + + + + + + + + + + '99: The Last War (set 2) + 1985 + Crux / Proma + + + + + + + + + + + + + + + + + + + + + + + + + + + 10-Yard Fight '85 (US, Taito license) + 1985 + Irem (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + 10-Yard Fight (Japan) + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + 10-Yard Fight (World, set 1) + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + 1000 Miglia: Great 1000 Miles Rally (94/05/10) + 1994 + Kaneko + + + + + + + + + + + + + + + + + 1000 Miglia: Great 1000 Miles Rally (94/05/26) + 1994 + Kaneko + + + + + + + + + + + + + + 1000 Miglia: Great 1000 Miles Rally (94/06/13) + 1994 + Kaneko + + + + + + + + + + + + + + 1000 Miglia: Great 1000 Miles Rally (Taiwan 94/07/18) + 1994 + Kaneko + + + + + + + + + + + + + + 18 Challenge Pro Golf (DECO Cassette) (Japan) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18 Holes Pro Golf (set 1) + 1981 + Data East Corporation + + + + + + + + + + + + + + + 1941 - Counter Attack (900227 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + 1941 - Counter Attack (900227 World) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + 1941 - Counter Attack (Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1941 - Counter Attack (World) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + 1942 (C64 Music) + 2015 + hack by Minwah + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (First Version) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (Revision A) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (Revision A, bootleg) [Bootleg] + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + 1942 (Revision B) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (Williams Electronics license) + 1985 + Capcom (Williams Electronics license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943 Kai: Midway Kaisen (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: Midway Kaisen (bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: Midway Kaisen (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: Midway Kaisen (Japan, no protection hack) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: Midway Kaisen (Japan, no protection hack, alt) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: Midway Kaisen (Japan, Rev B) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway (bootleg set 1, hack of Japan set) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway (bootleg set 2, hack of Japan set) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway (Euro) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway (US) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway (US, Rev C) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943: The Battle of Midway Mark II (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1944 - the loop master (000620 Euro) + 2000 + Eighting / Raizing (Capcom license) + + + + + + + + + + + + + + + + + + 1944 - the loop master (000620 Japan) + 2000 + Eighting / Raizing (Capcom license) + + + + + + + + + + + + + + + + + + 1944 - the loop master (000620 USA Phoenix Edition) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + + + 1944 - the loop master (000620 USA Phoenix Edition, alt) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + + + 1944 - the loop master (000620 USA) + 2000 + Eighting / Raizing (Capcom license) + + + + + + + + + + + + + + + + + + 1945 Part 2 (Chinese hack of Battle Garegga) [Hack] + 1996 + hack + + + + + + + + + + 1945k III (newer, OPCX1 PCB) + 2000 + Oriental Soft + + + + + + + + + + + + + + + + + + + 1945k III (newer, OPCX2 PCB) + 2000 + Oriental Soft + + + + + + + + + + 1945k III (older, OPCX1 PCB) + 1999 + Oriental Soft + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951207 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951207 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951207 USA Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951207 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951218 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951218 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (951225 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (960104 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (960104 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + 19XX - the war against destiny (960104 Japan, yellow case) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 On 2 Open Ice Challenge (rev 1.21) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + 2 On 2 Open Ice Challenge (rev 1.2A) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + 2020 Super Baseball (set 1) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2020 Super Baseball (set 2) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2020 Super Baseball (set 3) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 Count Bout / Fire Suplex (NGM-043) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 Count Bout / Fire Suplex (NGM-043)(NGH-043) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 On 3 Dunk Madness (US, prototype? 1997/02/04) [Prototype] + 1996 + Video System Co. + + + + + + + + + + + + + + + + 3X3 Puzzle (Enterprise) + 1998 + Ace Enterprise + + + + + + + + + + + + + + + + + + 3X3 Puzzle (Normal) + 1998 + Ace Enterprise + + + + + + + + + + + + + + + + + + 4 En Raya (set 1) + 1990 + IDSA + + + + + + + + + 4 En Raya (set 2) + 1990 + IDSA + + + + + + + + + 4 Fun in 1 [Bootleg] + 1981 + Armenia / Food and Fun + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4 player input test [Demo, 4 player input test cartridge] + ??? + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4-D Warriors (315-5162) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + 600 + 1981 + Konami + + + + + + + + + + + + + 64th. Street - A Detective Story (Japan, alt) + 1991 + Jaleco + + + + + + + + + + + + + + + + 64th. Street - A Detective Story (Japan, set 1) + 1991 + Jaleco + + + + + + + + + + + + + + + + 64th. Street - A Detective Story (World) + 1991 + Jaleco + + + + + + + + + + + + + + + + 7 Ordi (Korea) + 2002 + Yun Sung + + + + + + + + + + + + + + + + + + + + 800 Fathoms + 1981 + Amenip (US Billiards Inc. license) + + + + + + + + + + + + + 800 Fathoms (older) + 1981 + Amenip (US Billiards Inc. license) + + + + + + + + + + + + + A-Blast (Japan) + 2000 + Subsino + + + + + + + + + A.B. Cop (Japan, FD1094 317-0169b decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A.B. Cop (Japan, FD1094 317-0169b) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A.B. Cop (World, FD1094 317-0169b decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A.B. Cop (World, FD1094 317-0169b) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A.D. 2083 [Incomplete Sound] + 1983 + Midcoin + + + + + + + + + + + + + + + Abscam + 1981 + GL (US Billiards License) + + + + + + + + + + + + + + + + + + + Ace Attacker (FD1094 317-0059) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Ace Attacker (Japan, System 16A, FD1094 317-0060) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Acrobat Mission + 1991 + UPL (Taito license) + + + + + + + + + + + + + + + Acrobatic Dog-Fight + 1984 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + Acrobatic Dog-Fight (USA) + 1985 + Technos Japan (Data East USA, Inc. license) + + + + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (Japan revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (World revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (World revision 2) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (World revision 3) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Action Fighter (FD1089B 317-unknown) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Fighter (FD1089B 317-unknown, analog controls) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Fighter (System 16B, FD1089A 317-0018) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Fighter (System 16B, FD1089B 317-unknown) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Fighter (System 16B, FD1089B 317-unknown, analog controls) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Fighter (System 16B, unprotected, analog controls) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + Action Fighter (unprotected) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + Action Fighter (unprotected, analog controls) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + Action Fighter, FD1089A 317-0018 + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Action Hollywood + 1995 + TCH + + + + + + + + + + + + + + + Adventure Quiz 2 - Hatena? no Daibouken (Japan 900228) + 1990 + Capcom + + + + + + + + + + + + + + + + + Adventure Quiz Capcom World 2 (920611 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Adventure Quiz Capcom World 2 (Japan 920611, B-Board 90629B-3, no battery) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + Adventure Quiz Capcom World 2 (Japan 920611, B-Board 91634B-2) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Aero Fighters + 1992 + Video System Co. + + + + + + + + + + + Aero Fighters (Turbo Force hardware set 1) + 1992 + Video System Co. + + + + + + + + + + + + + + Aero Fighters (Turbo Force hardware set 2) + 1992 + Video System Co. + + + + + + + + + + + + + + Aero Fighters 2 / Sonic Wings 2 + 1994 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aero Fighters 3 / Sonic Wings 3 + 1995 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aeroboto + 1984 + Jaleco (Williams license) + + + + + + + + + + + + + + + Aerolitos (Spanish bootleg of Asteroids) [Bootleg] + 1980 + bootleg (Rodmar Elec.) + + + + + + + + After Burner + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After Burner II + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After Burner II (German) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Age Of Heroes - Silkroad 2 (v0.63 - 2001/02/07) + 2001 + Unico + + + + + + + + + + + + + + + Agent Super Bond (scobra hardware) [Bad Colours] + 1985 + Signaton USA + + + + + + + + + + + + + + + Agent X (prototype, rev 1) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Agent X (prototype, rev 2) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Agent X (prototype, rev 3) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Agent X (prototype, rev 4) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008)(ADH-008) + 1994 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Agress + 1991 + Palco + + + + + + + + Agress (English bootleg) + 2003 + Palco + + + + + + + + Ah Eikou no Koshien (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + Air Assault (World) + 1993 + Irem + + + + + + + + + + + + + + + + + + Air Attack (set 1) + 1996 + Comad + + + + + + + + + + + + + + + Air Attack (set 2) + 1996 + Comad + + + + + + + + + + + + + + + Air Buster: Trouble Specialty Raid Unit (bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + Air Buster: Trouble Specialty Raid Unit (Japan) + 1990 + Kaneko (Namco license) + + + + + + + + + + + Air Buster: Trouble Specialty Raid Unit (World) + 1990 + Kaneko (Namco license) + + + + + + + + + + + Air Duel (Japan, M72 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + + Air Duel (US location test, M82 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Air Duel (World, M72 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + + Air Duel (World, M82 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Air Gallet (Europe) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (Hong Kong) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (Korea) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (older, Europe) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (older, Hong Kong) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (older, Korea) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (older, Taiwan) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (older, USA) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (Taiwan) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Gallet (USA) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Air Rescue (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Air Rescue (US) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Air Rescue (World) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Airwolf + 1987 + Kyugo + + + + + + + + + + + + + + + + + + + + Airwolf (US) + 1987 + Kyugo (United Amusements license) + + + + + + + + + + + + + + + + + + + + Ajax + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ajax (Japan) + 1987 + Konami + + + + + + + + + + + + + + + + + Akka Arrh (prototype) [Video issue when zooming] + 1982 + Atari + + + + + + + + + + + + + + + + + + Akkanbeder (Ver 2.5J 1995/06/14) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + Akuma-Jou Dracula (Japan ver. N) + 1988 + Konami + + + + + + + + + + + + + + + + Akuma-Jou Dracula (Japan ver. P) + 1988 + Konami + + + + + + + + + + + + + + + + Akuu Gallet (Japan) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Akuu Gallet (older, Japan) + 1996 + BanPresto / Gazelle + + + + + + + + + + + + + + Alcon (US) + 1986 + Toaplan / Taito America Corp. + + + + + + + + + + + + + + + + + + + + Alex Kidd: The Lost Stars (set 1, FD1089A 317-unknown) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + Alex Kidd: The Lost Stars (set 2, unprotected) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Ali Baba and 40 Thieves + 1982 + Sega + + + + + + + + + + + + + + + + + + Alien Arena (Stargate upgrade) + 1985 + Duncan Brown + + + + + + + + + + + + + + + + + + Alien Arena [Game has no sound] + 1985 + Duncan Brown + + + + + + + + + + + + + + + Alien Challenge (China) + 1994 + IGS + + + + + + + + + + + + + + + + + + + Alien Challenge (World) + 1994 + IGS + + + + + + + + + + + + + + + + + Alien Invaders [preliminary sound] + 198? + Forbes? + + + + + + + + + + Alien Rescue (Homebrew, Test Build July 2019) [monstersgoboom.itch.io] + 2019 + MonstersGoBoom + + + + + + + + + + + + + + Alien Sector + 1985 + Namco + + + + + + + + + + + + + + + + + + Alien Storm (set 1, Japan Rev B, 2 Players, FD1094 317-0146 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + Alien Storm (set 1, Japan Rev B, 2 Players, FD1094 317-0146) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + Alien Storm (set 2, US, 3 Players, FD1094 317-0147 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + Alien Storm (set 2, US, 3 Players, FD1094 317-0147) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + Alien Storm (set 3, World, 3 Players, FD1094 317-0148 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + Alien Storm (set 3, World, 3 Players, FD1094 317-0148) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + Alien Storm (set 4, World, 2 Players, FD1094 317-0154) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 1, Japan, old, System 16A, FD1089A 317-0033) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 2, System 16A, FD1089A 317-0033) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 3, System 16B, FD1089A 317-0033) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 4, System 16B, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 5, System 16A, FD1089B 317-0037) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 6, Japan, new, System 16B, FD1089A 317-0033) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 7, System 16B, MC-8123B 317-00xx) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 Euro Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 Euro) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + Alien vs Predator (940520 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + Alien3: The Gun (Japan) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + Alien3: The Gun (US, Rev A) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + Alien3: The Gun (World) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + Aliens (Asia) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (Japan set 1) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (Japan set 2) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (US set 1) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (US set 2) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (World set 1) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (World set 2) + 1990 + Konami + + + + + + + + + + + + + + + + Aliens (World set 3) + 1990 + Konami + + + + + + + + + + + + + + + + Alligator Hunt (Spain, protected) + 1994 + Gaelco + + + + + + + + + + Alligator Hunt (unprotected, set 1) + 1994 + Gaelco + + + + + + + + + Alligator Hunt (unprotected, set 2) + 1994 + Gaelco + + + + + + + + + Alligator Hunt (World, protected) + 1994 + Gaelco + + + + + + + + + + Alpha Mission + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + Alpha Mission II / ASO II - Last Guardian (NGM-007)(NGH-007) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alpha Mission II / ASO II - Last Guardian (prototype) [Prototype] + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alpha One (prototype, 3 lives) [Bootleg] + 1983 + Atari + + + + + + + + + + + + Alpha One (prototype, 5 lives) [Bootleg] + 1983 + Atari + + + + + + + + + + + + Alpine Ski (set 1) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + Alpine Ski (set 2) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + Altered Beast (set 2, MC-8123B 317-0066) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + Altered Beast (set 4, MC-8123B 317-0066) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (set 5, FD1094 317-0069 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (set 5, FD1094 317-0069) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (set 6, 8751 317-0076) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (set 8, 8751 317-0078) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + Ambush + 1983 + Tecfri + + + + + + + + + + + + + Ambush (hack?) + 1983 + Tecfri + + + + + + + + + + + + + Ambush (Japan) + 1983 + Nippon Amuse Co-Ltd + + + + + + + + + + + + + Ambush (Volt Elec co-ltd) + 1983 + Volt Elec co-ltd + + + + + + + + + + + + + Ameisenbaer (German) + 1983 + TV-Tuning (F.E.G. license) + + + + + + + + + + American Horseshoes (US) + 1990 + Taito America Corporation + + + + + + + + + American Speedway (set 1) + 1987 + Enerdyne Technologies Inc. + + + + + + + + + + American Speedway (set 2) + 1987 + Enerdyne Technologies Inc. + + + + + + + + + + Amidar + 1981 + Konami + + + + + + + + + + + + + Amidar (bootleg) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + Amidar (older) + 1981 + Konami + + + + + + + + + + + + Amidar (Olympia) + 1982 + Konami (Olympia license) + + + + + + + + + + + + + Amidar (Scramble hardware) + 1982 + Konami + + + + + + + + + + + + + + + + Amidar (Stern) + 1982 + Konami (Stern license) + + + + + + + + + + + + + Amigo [Bootleg] + 1982 + bootleg + + + + + + + + + + + + Andro Dunos (NGM-049)(NGH-049) + 1992 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Android (prototype, early build) + 198? + Nasco + + + + + + + + + + + + Android (prototype, later build) + 198? + Nasco + + + + + + + + + Angel Kids (Japan) + 1988 + Sega / Nasco? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Angler Dangler (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Anteater + 1982 + Stern (Tago license) + + + + + + + + + + + + Apocaljpse Now [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + Appoooh + 1984 + Sanritsu / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Aquajack (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + Aquajack (US) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + Aquajack (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Aquarium (Japan) + 1996 + Excellent System + + + + + + + + + + + + Aquarium (US) + 1996 + Excellent System + + + + + + + + + + + + Arabian + 1983 + Sun Electronics + + + + + + + + + + + + Arabian (Atari) + 1983 + [Sun Electronics] (Atari license) + + + + + + + + + + + + Arabian Fight (Japan) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + Arabian Fight (US) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + Arabian Fight (World) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + Arabian Magic (Ver 1.0A 1992/07/06) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Arabian Magic (Ver 1.0J 1992/07/06) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Arabian Magic (Ver 1.0O 1992/07/06) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + Aracnis (bootleg of Scorpion on Moon Cresta hardware) [Bootleg] + 19?? + bootleg + + + + + + + + + + + + Arbalester + 1989 + Seta + + + + + + + + + + + + + + + + Arcade Classics (prototype) + 1992 + Atari Games + + + + + + + Arcadia (NMK) + 1994 + NMK + + + + + + + + + + + + + + + + + Area 88 (Japan Resale ver.) + 1989 + Daipro / Capcom + + + + + + + + + + + + + + + + + + + + + Area 88 (Japan) + 1989 + Daipro / Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ares no Tsubasa (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + Ares no Tsubasa (Japan, rev. A) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + Argus + 1986 + NMK (Jaleco license) + + + + + + + + + + + + + + + + + + + + Argus (Gottlieb, prototype) + 1984 + Gottlieb + + + + + + + + + + + + + + + + Argus no Senshi (Japan) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + Arian Mission + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + Ark Area + 1988 + UPL + + + + + + + + + + + + + + + + Arkanoid (bootleg on Block hardware) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + Arkanoid (bootleg with MCU set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + Arkanoid (bootleg with MCU set 2) [Bootleg] + 1986 + bootleg (Beta) + + + + + + + + + + + + Arkanoid (bootleg with MCU, alt) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + Arkanoid (bootleg with MCU, harder) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + Arkanoid (bootleg with MCU, harder, alt) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + Arkanoid (Game Corporation bootleg, set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Arkanoid (Game Corporation bootleg, set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Arkanoid (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + Arkanoid (Japan, older rev) + 1986 + Taito Corporation + + + + + + + + + + + + Arkanoid (Japan, oldest rev) + 1986 + Taito Corporation + + + + + + + + + + + + Arkanoid (Tayto bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Arkanoid (Tayto bootleg, harder) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Arkanoid (US) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + Arkanoid (US, oldest rev) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + Arkanoid (World, oldest rev) + 1986 + Taito Corporation Japan + + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (Japan bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + Arkanoid Returns (Ver 2.02A 1997/02/10) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Arkanoid Returns (Ver 2.02J 1997/02/10) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Arkanoid Returns (Ver 2.02O 1997/02/10) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Arm Champs II v1.7 + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Arm Champs II v2.6 + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Arm Champs II v2.7 + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Arm Wrestling + 1985 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Armed Formation + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + Armed Formation (Fillmore license) + 1988 + Nichibutsu (Fillmore license) + + + + + + + + + + + + + + + + + Armed Police Batrider (China) (Fri Feb 13 1998) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider (Europe) (Fri Feb 13 1998) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider (Korea) (Fri Feb 13 1998) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider (U.S.A.) (Fri Feb 13 1998) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider - A Version (Hong Kong) (Mon Dec 22 1997) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider - A Version (Japan) (Mon Dec 22 1997) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider - A Version (Taiwan) (Mon Dec 22 1997) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armed Police Batrider - B Version (Japan) (Fri Feb 13 1998) + 1998 + Raizing / 8ing + + + + + + + + + + + + + + Armored Car (set 1) + 1981 + Stern + + + + + + + + + + + + + Armored Car (set 2) + 1981 + Stern + + + + + + + + + + + + + Armored Warriors (940920 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (940920 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (941011 Europe Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (941011 Europe) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (941024 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (941024 Europe) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (941024 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting / Ryuuko no Ken (NGM-044)(NGH-044) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 2 / Ryuuko no Ken 2 (Enable hidden characters V2) [Hack] + 1994 + Yumeji + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 2 / Ryuuko no Ken 2 (NGH-056) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 3 - The Path of the Warrior (Korean release) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden (Enable Hidden Characters V2) [Hack] + 1996 + Yumeji + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ashita no Joe (Japan) [Incomplete sound] + 1990 + Taito Corporation / Wave + + + + + + + + + + + + + + + + + + + + + + Ashura Blaster (Japan) + 1990 + Taito Corporation + + + + + + + + + + + Ashura Blaster (US) + 1990 + Taito America Corporation + + + + + + + + + + + Ashura Blaster (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + ASO - Armored Scrum Object + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + Assault (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Assault (Rev B) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Assault Plus (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Asterix (ver AAD) + 1992 + Konami + + + + + + + + + + + + + + Asterix (ver EAA) + 1992 + Konami + + + + + + + + + + + + + + Asterix (ver EAC) + 1992 + Konami + + + + + + + + + + + + + + Asterix (ver EAD) + 1992 + Konami + + + + + + + + + + + + + + Asterix (ver JAD) + 1992 + Konami + + + + + + + + + + + + + + Asterock (Sidam bootleg of Asteroids) [Bootleg] + 1979 + bootleg (Sidam) + + + + + + + + + + + + Asterock (Videotron bootleg of Asteroids) [Bootleg] + 1979 + bootleg (Videotron) + + + + + + + + + + + + Asteroids (bootleg on Lunar Lander hardware, set 1) [Bootleg] + 1979 + bootleg + + + + + + + + Asteroids (bootleg on Lunar Lander hardware, set 2) [Bootleg] + 1979 + bootleg + + + + + + + + Asteroids (rev 1) + 1979 + Atari + + + + + + + + Asteroids (rev 2) + 1979 + Atari + + + + + + + + Asteroids (rev 4) + 1979 + Atari + + + + + + + + Asteroids Deluxe (rev 1) + 1980 + Atari + + + + + + + + + + Asteroids Deluxe (rev 2) + 1980 + Atari + + + + + + + + + + Asteroids Deluxe (rev 3) + 1980 + Atari + + + + + + + + + + Astrians (clone of Swarm) [Bootleg] + 1979 + BGV Ltd + + + + + + + + + + + Astro Fantasia (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Flash (Japan) + 1986 + Sega + + + + + + + + Asuka & Asuka (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + Asuka & Asuka (World) + 1988 + Taito Corporation + + + + + + + + + + + + + + Asura Blade - Sword of Dynasty (Japan) + 1998 + Fuuki + + + + + + + + + + + + + + + + + + + + Asura Buster - Eternal Warriors (Japan) + 2000 + Fuuki + + + + + + + + + + + + + + + + + + + + + + Asura Buster - Eternal Warriors (Japan) (ARCADIA review build) + 2000 + Fuuki + + + + + + + + + + + + + + + + + + + + + + Ataque Androide - Moon Cresta (FAR S.A. Spanish bootleg) [Bootleg] + 1980? + bootleg (FAR S.A.) + + + + + + + + + + + + + + + + Ataque Sideral (Spanish bootleg of UniWar S) [Bootleg] + 1980 + bootleg (Electrogame S.A.) + + + + + + + + + + + + + + + + Athena + 1986 + SNK + + + + + + + + + + + + + + + + + Athena (bootleg) + 1986 + SNK + + + + + + + + + + + + + + + + + Athena no Hatena ? + 1993 + Athena + + + + + + + Atlant Olimpic + 1996 + bootleg + + + + + + + + + + + + Atlantic City Action + 1983 + EPOS Corporation + + + + + + + + + + Atomic Boy (revision A) + 1985 + Irem (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Boy (revision B) + 1985 + Irem (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Point (Korea) + 1990 + Philco + + + + + + + + Atomic Punk (US) + 1991 + Irem America (licensed from Hudson Soft) + + + + + + + + + + + Atomic Robo-kid (Japan) + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Robo-kid (Japan, Type-2, set 1) + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Robo-kid (Japan, Type-2, set 2) + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Robo-kid (World, Type-2) + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Attack (Defender bootleg) [Bootleg] + 1980 + bootleg (Famare SA) + + + + + + + + + + + + + + + Aurail (set 1, Japan, FD1089A 317-0167 decrypted) [Bootleg] + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aurail (set 1, Japan, FD1089A 317-0167) + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aurail (set 2, World, FD1089B 317-0168 decrypted) [Bootleg] + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aurail (set 2, World, FD1089B 317-0168) + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aurail (set 3, US, unprotected) + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ave Fenix (Electrogame, Spanish bootleg of Phoenix) + 1980 + bootleg (Video Game) + + + + + + + + + + + + + + + + + Ave Fenix (Laguna, Spanish bootleg of Phoenix) + 1980 + bootleg + + + + + + + + + + + + + + + + + Ave Fenix (Recreativos Franco, Spanish bootleg of Phoenix) + 1981 + bootleg (Recreativos Franco S.A.) + + + + + + + + + + + + + + + + + Avengers (US set 1) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Avengers (US set 2) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Avengers In Galactic Storm (Japan) + 1995 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Avengers In Galactic Storm (US) + 1995 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Avenging Spirit + 1991 + Jaleco + + + + + + + + + + + + + + + Aztarac [Vector graphics] + 1983 + Centuri + + + + + + + + + + + + + + + + + + + + Azurian Attack + 1982 + Rait Electronics Ltd + + + + + + + + + B-Wings (Alt Ver.?) + 1984 + Data East Corporation + + + + + + + + + + + + + + + B-Wings (Japan new Ver.) + 1984 + Data East Corporation + + + + + + + + + + + + + + B-Wings (Japan old Ver.) + 1984 + Data East Corporation + + + + + + + + + + + + + + B.C. Kid / Bonk's Adventure / Kyukyoku!! PC Genjin + 1994 + Kaneko + + + + + + + + + + + + + + + + + B.C. Story (set 1) + 1997 + SemiCom + + + + + + + + + + + + + + + + + + + + + B.C. Story (set 2) + 1997 + SemiCom + + + + + + + + + + + + + + + + + + + + + B.Rap Boys (World) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + + B.Rap Boys Special (Japan) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + + + B.Rap Boys Special (US) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + + + B.Rap Boys Special (World) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + + + Back Fire (Tecmo, bootleg) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + Back Street Soccer + 1996 + SunA + + + + + + + + + + + + + + + + Backfire! (set 1) + 1995 + Data East Corporation + + + + + + + + + + + + + + + + + Bad Apple Demo [Demo] + 2017 + Hpman + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bad Dudes vs. Dragonninja (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bad Lands + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Bagman + 1982 + Valadon Automation + + + + + + + + + + + + + + + + + + Bagman (bootleg on Moon Cresta hardware set 2) [Bootleg, Bad Colours] + 1982 + Valadon Automation + + + + + + + + + Bagman (Stern Electronics, revision A3) + 1982 + Valadon Automation (Stern Electronics license) + + + + + + + + + + + + + + + + + + Bagman (Stern Electronics, revision A4) + 1982 + Valadon Automation (Stern Electronics license) + + + + + + + + + + + + + + + + + + Bagman (Stern Electronics, revision A5) + 1982 + Valadon Automation (Stern Electronics license) + + + + + + + + + + + + + + + + + + Bagman (Taito) + 1982 + Valadon Automation (Taito license) + + + + + + + + + + + + + + + + + + Bakatonosama Mahjong Manyuuki (MOM-002)(MOH-002) + 1991 + Monolith Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bakuretsu Breaker (Japan) + 1992 + Kaneko + + + + + + + + + + + Bakuretsu Quiz Ma-Q Dai Bouken (Japan) + 1992 + Namco + + + + + + + + + + + + Bakutotsu Kijuutei + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + Bal Cube + 1996 + Metro + + + + + + + + + + + Ball Boy [Bootleg] + 2003 + bootleg + + + + + + + + + + Balloon Brothers + 1992 + East Technology + + + + + + + + + + + + Baluba-louk no Densetsu (Japan) + 1986 + Able Corp, Ltd. + + + + + + + + + + + + + + + + + + + + + + BanBam + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + Bang Bang Ball (v1.05) + 1996 + Banpresto / Kunihiko Tashiro+Goodhouse + + + + + + + + + + + Bang Bang Busters (2010 NCI release) [Prototype] + 2000 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bang Bead + 2000 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bang Bead (Prototype?) [Prototype] + 2000 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bang! + 1998 + Gaelco + + + + + + + + + + + + + + + + + + + + Bank Panic + 1984 + [Sanritsu] Sega + + + + + + + + + + + + + + + + + + + + Baraduke + 1985 + Namco + + + + + + + + + + + + + + + + + + Baryon - Future Assault (set 1) + 1997 + SemiCom + + + + + + + + + + + + + + + Baryon - Future Assault (set 2) + 1997 + SemiCom + + + + + + + + + + + + + + + Baseball Stars 2 + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Baseball Stars Professional (NGH-002) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Baseball Stars Professional (NGM-002) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Batman + 1991 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Batman Part 2 [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + Batsugun (Korean PCB) + 1993 + Toaplan + + + + + + + + + + + + + + + + + + Batsugun (set 1) + 1993 + Toaplan + + + + + + + + + + + + Batsugun (set 2) + 1993 + Toaplan + + + + + + + + + + + + Batsugun (Special Ver.) + 1993 + Toaplan + + + + + + + + + + + + Battlantis (Japan, program code E) + 1987 + Konami + + + + + + + + Battlantis (program code F) + 1987 + Konami + + + + + + + + Battlantis (program code G) + 1987 + Konami + + + + + + + + Battle Bakraid (Japan) (Wed Apr 7 1999) + 1999 + Eighting + + + + + + + + + + + + + + + + Battle Bakraid - Unlimited Version (China) (Tue Jun 8 1999) + 1999 + Eighting + + + + + + + + + + + + + + + + Battle Bakraid - Unlimited Version (Japan) (Tue Jun 8 1999) + 1999 + Eighting + + + + + + + + + + + + + + + + Battle Bakraid - Unlimited Version (U.S.A.) (Tue Jun 8 1999) + 1999 + Eighting + + + + + + + + + + + + + + + + Battle Balls (Germany, earlier) + 1995 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + Battle Balls (Germany, newer) + 1995 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + Battle Balls (Hong Kong) + 1995 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + Battle Balls (Hong Kong, earlier) + 1995 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + Battle Balls (Portugal) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + Battle Balls (US) + 1995 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + Battle Bubble (v2.00) + 1999 + Banpresto (Limenko license?) + + + + + + + + + + + Battle Chopper (World) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Circuit (970319 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + Battle Circuit (970319 Euro Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + Battle Circuit (970319 Euro) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + Battle Circuit (970319 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + Battle Cross + 1982 + Omori Electric Co., Ltd. + + + + + + + + + + + + + + Battle Cruiser M-12 + 1983 + Sigma Enterprises Inc. + + + + + + + + + + + + Battle Field (bootleg) [Bootleg, no-rotation joystick ver] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Field (Japan) + 1987 + Alpha Denshi Co. (SNK license) + + + + + + + + + + + + + + + + + + + + + + + + Battle Flip Shot + 1998 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Garegga (Austria / Hong Kong) (Sat Feb 3 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga (Europe / USA / Japan / Asia) (Sat Feb 3 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga (location test) (Wed Jan 17 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga (Taiwan / Germany) (Thu Feb 1 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga - New Version (Austria / Hong Kong) (Sat Mar 2 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga - Type 2 (Denmark / China) (Tue Apr 2 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga - Type 2 (Europe / USA / Japan / Asia) (Sat Mar 2 1996) + 1996 + Raizing / 8ing + + + + + + + + + + + + Battle Garegga Zakk version (Europe / USA / Japan / Asia) (Sat Feb 3 1996) + 2008 + Raizing / 8ing + + + + + + + + + + + + Battle K-Road + 1994 + Psikyo + + + + + + + + + + + + + + + Battle K-Road (Korea) + 1994 + Psikyo + + + + + + + + + + + + + + + Battle Lane! Vol. 5 (set 1) + 1986 + Technos Japan (Taito license) + + + + + + + + + + + + + Battle Lane! Vol. 5 (set 2) + 1986 + Technos Japan (Taito license) + + + + + + + + + + + + + Battle Lane! Vol. 5 (set 3) + 1986 + Technos Japan (Taito license) + + + + + + + + + + + + + Battle of Atlantis (bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Battle of Atlantis (set 1) + 1981 + Comsoft + + + + + + + + + + + + + + + Battle of Atlantis (set 2) + 1981 + Comsoft + + + + + + + + + + + + + + + + + Battle Shark (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Battle Shark (Japan, Joystick) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Battle Shark (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Battle Shark (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + Battle Zone (bootleg of Mayday) [Bootleg] + 1980 + bootleg (Video Game) + + + + + + + + + + + Battle Zone (cocktail) [GFX/Sound Issues] + 1980 + Atari + + + + + + + + + + + + + + + + + + + + Battle Zone (rev 1) [GFX/Sound Issues] + 1980 + Atari + + + + + + + + + + + + + + + + + + + Battle Zone (rev 2) [GFX/Sound Issues] + 1980 + Atari + + + + + + + + + + + + + + + + + + + Battletoads + 1994 + Rare / Electronic Arts + + + + + + + + + + + + + + Bay Route (set 1, US, unprotected) + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + + + + + + + + Bay Route (set 2, Japan, FD1094 317-0115 decrypted) [Bootleg] + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + Bay Route (set 2, Japan, FD1094 317-0115) + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + + Bay Route (set 3, World, FD1094 317-0116 decrypted) [Bootleg] + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + Bay Route (set 3, World, FD1094 317-0116) + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + + Beast Busters (Japan, Version 2, 2 Players) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Beast Busters (Japan, Version 2, 3 Players) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Beast Busters (US, Version 2) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Beast Busters (US, Version 3) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Beast Busters (World) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Beastie Feastie (Pac-Man conversion) + 1984 + Epos Corporation + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, China) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, Hong Kong) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, Japan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, Korea) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, Taiwan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V100, World) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, China) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, Hong Kong) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, Japan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, Korea) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, Taiwan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V101, World) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, China) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, Hong Kong) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, Japan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, Korea) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, Taiwan) + 2001 + IGS + + + + + + + + + + + + + + + + + Bee Storm - DoDonPachi II (V102, World) + 2001 + IGS + + + + + + + + + + + + + + + + + Bells & Whistles (Asia, version M) + 1991 + Konami + + + + + + + + + + + + + + Bells & Whistles (World, version L) + 1991 + Konami + + + + + + + + + + + + + + Beraboh Man (Japan, Rev B) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Beraboh Man (Japan, Rev C) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (World Wars) (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (World?) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Berzerk (French Speech, revision RC31) + 1980 + Stern Electronics + + + + + + + + + + + Berzerk (German Speech, revision RC32) + 1980 + Stern Electronics + + + + + + + + + + + Berzerk (revision RC28) + 1980 + Stern Electronics + + + + + + + + + + + Berzerk (revision RC31) + 1980 + Stern Electronics + + + + + + + + + + + Berzerk (revision RC31A) + 1980 + Stern Electronics + + + + + + + + + + + Berzerk (Spanish Speech, revision RC32) + 1980 + Stern Electronics (Sonic License) + + + + + + + + + + Best Bout Boxing (ver 1.3) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Best League (bootleg of Big Striker, Italian Serie A) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + Best League (bootleg of Big Striker, World Cup) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + Best Of Best + 1994 + SunA + + + + + + + + + + + + + + + + + + + + + + + Bestri (Korea, set 1) + 1998 + F2 System + + + + + + + + + + + + + + + Bestri (Korea, set 2) + 1998 + F2 System + + + + + + + + + + + + + + + Biaofeng Zhanjing (Chinese bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + Big Bang (9th Nov. 1993) + 1993 + NMK + + + + + + + + + + + + + Big Bucks + 1986 + Dynasoft Inc. + + + + + + + + + + + + + + + + + + + + + + Big Karnak + 1991 + Gaelco + + + + + + + + + + + + + Big Run (11th Rallye version) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Big Striker + 1992 + Jaleco + + + + + + + + + + + + + + + Big Striker (bootleg w/Italian teams) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + Big Striker (bootleg) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + Big Twin + 1995 + Playmark + + + + + + + + + + + + + + + Bikkuri Card (Japan) + 1987 + Peni Soft + + + + + + + + + + + + + + Bio Attack + 1983 + Taito Corporation (Fox Video Games license) + + + + + + + + + + + + + + + + + + + + + Bio-ship Paladin + 1990 + UPL (American Sammy license) + + + + + + + + + + + + + + + + + + Biomechanical Toy (Ver. 1.0.1870) + 1995 + Gaelco + + + + + + + + + + + + + + + Biomechanical Toy (Ver. 1.0.1878) + 1995 + Gaelco + + + + + + + + + + + + + + + Biomechanical Toy (Ver. 1.0.1884) + 1995 + Gaelco + + + + + + + + + + + + + + + Biomechanical Toy (Ver. 1.0.1885) + 1995 + Gaelco + + + + + + + + + + + + + + + Bionic Commando (Euro) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commando (US set 1) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commando (US set 2) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commandos (bootleg, set 1) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commandos (bootleg, set 2) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bioplaything Cop (Ver. 1.0.1823, prototype) [Prototype] + 1995 + Gaelco + + + + + + + + + + + + + + + Birdie Try (Japan revision 2) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdie Try (Japan revision 2, revision 1 MCU) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdiy + 1982 + Mama Top + + + + + + + + + + + + + Bishi Bashi Championship Mini Game Senshuken (ver JAA, 3 Players) [Imperfect gfx (one gfx rom bad, bad priorities)] + 1996 + Konami + + + + + + + + + + + + + Black Dragon (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Black Dragon (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Black Heart + 1991 + UPL + + + + + + + + + + + + + + Black Heart (Japan) + 1991 + UPL + + + + + + + + + + + + + + Black Hole + 1981 + TDS + + + + + + + + + + + + Black Panther + 1987 + Konami + + + + + + + + + Black Tiger + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Black Tiger (bootleg set 1) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Black Tiger (bootleg set 2) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + Black Tiger (older) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Black Tiger / Black Dragon (mixed bootleg?) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + Black Touch '96 [Game is glitchy (very poor quality)! This is normal!] + 1996 + D.G.R.M. + + + + + + + + + + + + + + + + + + Black Widow + 1982 + Atari + + + + + + + + + + + + + + Blade Master (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + Blades of Steel (version E, Trackball) + 1987 + Konami + + + + + + + + + + Blades of Steel (version L, Trackball) + 1987 + Konami + + + + + + + + + + Blades of Steel (version T, Joystick) + 1987 + Konami + + + + + + + + + + Blandia + 1992 + Allumer + + + + + + + + + + + + + + + + Blandia (prototype) + 1992 + Allumer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blast Off (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Blaster + 1983 + Williams / Vid Kidz + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (German, rev 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (rev 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (rev 3) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (rev 4) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (with heads) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasto + 1978 + Gremlin + + + + + + + + + + Blaze On (Japan) + 1992 + A.I (Atlus license) + + + + + + + + + + + Blaze On (World) + 1992 + A.I (Atlus license) + + + + + + + + + + + Blazer (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blazing Star + 1998 + Yumekobo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blazing Tornado + 1994 + Human Amusement + + + + + + + + + + + + + + + + + + + + + + + + Block (Game Corporation bootleg, set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Block (Game Corporation bootleg, set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Block Block (bootleg) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + Block Block (Japan 910910) + 1991 + Capcom + + + + + + + + + + + + + Block Block (World 910910) + 1991 + Capcom + + + + + + + + + + + + + Block Block (World 911106 Joystick) + 1991 + Capcom + + + + + + + + + + + + + Block Block (World 911219 Joystick) + 1991 + Capcom + + + + + + + + + + + + + Block Carnival / Thunder & Lightning 2 + 1992 + Visco + + + + + + + + Block Gal (MC-8123B, 317-0029) + 1987 + Sega / Vic Tokai + + + + + + + + + + + + + + + + + + Block Hole + 1989 + Konami + + + + + + + + + + + + + + Block Out (Europe and Oceania) + 1989 + Technos Japan / California Dreams + + + + + + + + Block Out (Japan) + 1989 + Technos Japan / California Dreams + + + + + + + + Block Out (set 1) + 1989 + Technos Japan / California Dreams + + + + + + + + Block Out (set 2) + 1989 + Technos Japan / California Dreams + + + + + + + + Blockade + 1976 + Gremlin + + + + + + + + BlockBuster + 1983 + Kiwako (ECI license) + + + + + + + + + + + Blocken (Japan) + 1994 + Visco / KID + + + + + + + + + + Blomby Car + 1994 + ABM & Gecas + + + + + + + + + + + Blomby Car (not encrypted) + 1994 + ABM & Gecas + + + + + + + + + + + Blood Bros. (Japan) + 1990 + TAD Corporation + + + + + + + + + + + + + + Blood Bros. (Japan, rev A) + 1990 + TAD Corporation + + + + + + + + + + + + + + Blood Bros. (Korea) + 1990 + TAD Corporation + + + + + + + + + + + + + + Blood Bros. (US) + 1990 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + Blood Bros. (World?) + 1990 + TAD Corporation + + + + + + + + + + + + + + Blood Storm (v1.04) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v1.10) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.10) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.20) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.22) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Warrior + 1994 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bloxeed (Japan, FD1094 317-0139 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + Bloxeed (Japan, FD1094 317-0139) + 1990 + Sega + + + + + + + + + + + + Bloxeed (System 16B, PS2 data file) + 2008 + Sega + + + + + + + Blue Hawk + 1993 + Dooyong + + + + + + + + + + + + Blue Hawk (NTC) + 1993 + Dooyong (NTC license) + + + + + + + + + + + + Blue Print (Jaleco) + 1982 + [Zilec Electronics] Jaleco + + + + + + + + + + + + + + + Blue Print (Midway) + 1982 + [Zilec Electronics] Bally Midway + + + + + + + + + + + + + + + Blue's Journey / Raguy (ALH-001) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blue's Journey / Raguy (ALM-001)(ALH-001) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Boardwalk Casino + 1983 + EPOS Corporation + + + + + + + + + + Bobble Bobble ('bootleg redux' hack for Bobble Bobble PCB) [Bootleg] + 2013 + bootleg (Punji) + + + + + + + + + + + + + + + + + + + + + + + + Bobble Bobble (bootleg of Bubble Bobble) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Body Slam (8751 317-0015) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Bogey Manor + 1985 + Technos Japan + + + + + + + + + + + + + + + + Boggy '84 + 1983 + Kaneko + + + + + + + + + + + + + Boggy '84 (bootleg) + 1983 + bootleg (Eddie's Games) + + + + + + + + + + + + + Bomb Bee + 1979 + Namco + + + + + Bomb Jack (set 1) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + Bomb Jack (set 2) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + Bomb Jack (Tecfri, Spain) + 1984 + Tehkan (Tecfri licence) + + + + + + + + + + + + + + + + + Bomb Kick (set 1) + 1998 + Yun Sung + + + + + + + + + + + + + + Bomb Kick (set 2) + 1998 + Yun Sung + + + + + + + + + + + + + + Bomber (bootleg of Scramble) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + Bomber Man (Japan) + 1991 + Irem (licensed from Hudson Soft) + + + + + + + + + + + Bomber Man World (Japan) + 1992 + Irem + + + + + + + + + + + Bomber Man World (Japan, revised sound hardware) + 1992 + Irem + + + + + + + + + + + Bomber Man World / New Dyna Blaster - Global Quest + 1992 + Irem + + + + + + + + + + + Bombjack Twin (prototype? with adult pictures, set 1) + 1993 + NMK + + + + + + + + + + + + + + + Bombjack Twin (prototype? with adult pictures, set 2) + 1993 + NMK + + + + + + + + + + + + + + + Bombjack Twin (set 1) + 1993 + NMK + + + + + + + + + + + + Bombjack Twin (set 2) + 1993 + NMK + + + + + + + + + + + + Bonanza Bros (Japan, Floppy DS3-5000-07b Based) + 1990 + Sega + + + + + + + + + + Bonanza Bros (US, Floppy DS3-5000-07d? Based) + 1990 + Sega + + + + + + + + + + Bone Crusher [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + Bongo + 1983 + Jetsoft + + + + + + + + + + + + Bonze Adventure (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + Bonze Adventure (World, Newer) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + Bonze Adventure (World, Older) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + Bonze Adventure (World, prototype) [Prototype] + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + Booby Kids (Italian manufactured graphic hack / bootleg of Kid no Hore Hore Daisakusen (bootleg)) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Boogie Wings (Asia v1.5, 92.12.07) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Boogie Wings (Euro v1.5, 92.12.07) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Boogie Wings (USA v1.7, 92.12.14) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Boomer Rang'r / Genesis (set 1) + 1983 + Data East Corporation + + + + + + + + + + + + + Boomer Rang'r / Genesis (set 2) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Boong-Ga Boong-Ga (Spank'em!) + 2001 + Taff System + + + + + + + + + + + + + + + + + + + + + Botanic (English / Spanish) + 1983 + Itisa + + + + + + + + + + + + + + + Botanic (French) + 1984 + Itisa (Valadon Automation license) + + + + + + + + + + + + + + + Bottom of the Ninth (ver. N) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bottom of the Ninth (ver. T) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Boulder Dash (DECO Cassette) (US) + 1985 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Boulder Dash / Boulder Dash Part 2 (Japan) + 1990 + Data East Corporation (licensed from First Star) + + + + + + + + + + + + + + + + + + + + + + Boulder Dash / Boulder Dash Part 2 (World) + 1990 + Data East Corporation (licensed from First Star) + + + + + + + + + + + + + + + + + + + + + + Bouncing Balls + 1991 + Comad + + + + + + + + + + + + + + + + + + Bouncing Balls (Adult) + 1991 + Comad + + + + + + + + + + + + + + + + + + Bowl-O-Rama + 1991 + P&P Marketing + + + + + + Boxy Boy (SB?) + 1990 + Namco + + + + + + + + + + + + + + + Boxy Boy (World, SB2) + 1990 + Namco + + + + + + + + + + + + + + + Bradley Trainer [GFX/Sound Issues] + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + Brain + 1986 + Coreland / Sega + + + + + + + + + + + + + + + + + Break Thru (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + Breakers + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breakers Revenge + 1998 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breakers Revenge (Boss Hack) [Hack] + 1998 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breakers Revenge - Extra Mode (Hack) [Hack] + 2018 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breywood (Japan revision 2) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Brix + 1982 + Cinematronics / Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + Bubble 2000 + 1998 + Afega (Tuning license) + + + + + + + + + + + + + + + + Bubble 2000 V1.2 + 1998 + Afega (Tuning license) + + + + + + + + + + + + + + + + Bubble Bobble (boolteg with 68705, set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (boolteg with 68705, set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (for Bobble Bobble PCB) [Bootleg] + 2013 + bootleg (Aladar) + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (Japan, Ver 0.0) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (Japan, Ver 0.1) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (prototype on Tokio hardware) [Prototype] + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (Ultra Version, Hack) + 2011 + Hack (Penta Penguin) + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (US, Ver 1.0) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (US, Ver 5.1) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble II (Ver 0.0J 1993/12/13, prototype) [Prototype] + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble II (Ver 2.5O 1994/10/05) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Bubble Bobble II (Ver 2.6O 1994/12/16) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Bubble Bobble: Lost Cave V1.0 [Homebrew] + 2013 + hack (Bisboch and Aladar) + + + + + + + + + + + + + + + + + + + + + Bubble Bobble: Lost Cave V1.1 [Homebrew] + 2013 + hack (Bisboch and Aladar) + + + + + + + + + + + + + + + + + + + + + Bubble Bobble: Lost Cave V1.2 [Homebrew] + 2013 + hack (Bisboch and Aladar) + + + + + + + + + + + + + + + + + + + + + Bubble Bobble: Lost Cave V1.2 (for Bobble Bobble PCB) [Bootleg] + 2013 + hack (Bisboch and Aladar) + + + + + + + + + + + + + + + + + + + + + + + + Bubble Memories: The Story Of Bubble Bobble III (Ver 2.3J 1996/02/07) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + Bubble Memories: The Story Of Bubble Bobble III (Ver 2.4O 1996/02/15) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Bubble Memories: The Story Of Bubble Bobble III (Ver 2.5A 1996/02/21) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + Bubble Pong Pong + 1996 + Top Ltd. + + + + + + + + + + + + + + + + + Bubble Symphony (Ver 2.5A 1994/10/05) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + Bubble Symphony (Ver 2.5J 1994/10/05) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Bubble Symphony (Ver 2.5O 1994/10/05) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Bubble Trouble (Japan, Rev C) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + Bubble Trouble (World, Rev B) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + Bubbles + 1982 + Williams + + + + + + + + + + + + + + + + + + Bubbles (prototype version) [Prototype] + 1982 + Williams + + + + + + + + + + + + + + + + + + Bubbles (Solid Red label) + 1982 + Williams + + + + + + + + + + + + + + + + + + Buccaneer + 19?? + hack + + + + + + + + + + + + + + + + + + + Buccaneers (set 1) + 1989 + Duintronic + + + + + + + + + + + + + + + + + + + + + + Buccaneers (set 2) + 1989 + Duintronic + + + + + + + + + + + + + + + + + + + Buccaneers (set 3, harder) + 1989 + Duintronic + + + + + + + + + + + + + + + + + + + Buck Rogers: Planet of Zoom + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Buck Rogers: Planet of Zoom (not encrypted, set 1) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Buck Rogers: Planet of Zoom (not encrypted, set 2) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bucky O'Hare (ver AA) + 1992 + Konami + + + + + + + + + + + + + + + + + Bucky O'Hare (ver AAB) + 1992 + Konami + + + + + + + + + + + + + + + + + Bucky O'Hare (ver EA) + 1992 + Konami + + + + + + + + + + + + + + + + + Bucky O'Hare (ver EAB) + 1992 + Konami + + + + + + + + + + + + + + + + + Bucky O'Hare (ver JAA) + 1992 + Konami + + + + + + + + + + + + + + + + + Bucky O'Hare (ver UAB) + 1992 + Konami + + + + + + + + + + + + + + + + + Buggy Challenge + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Buggy Challenge (Tecfri) + 1984 + Taito Corporation (Tecfri license) + + + + + + + + + + + + + + + + + + + + + Bullet (FD1094 317-0041 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Bullet (FD1094 317-0041) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + Bullfight (315-5065) + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + + + + Bump 'n' Jump + 1982 + Data East USA + + + + + + + + + + + + + + Bump 'n' Jump (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burger Time (Data East set 1) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + Burger Time (Data East set 2) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + Burger Time (Data East USA) [graphics issues, use parent romset!] + 1982 + Data East USA Inc. + + + + + + + + + + + + + + + + + + + Burger Time (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burger Time (Midway) + 1982 + Data East (Bally Midway license) + + + + + + + + + + + + + + + + + + + Burglar X + 1997 + Unico + + + + + + + + + + + + + + + + + + + + + + Burnin' Rubber + 1982 + Data East + + + + + + + + + + + Burnin' Rubber (DECO Cassette) (US) (set 1) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burnin' Rubber (DECO Cassette) (US) (set 2) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (NGH-018)(US) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (NGM-018)(NGH-018) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (prototype, near final, ver 23.3, 910326) [Prototype] + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (prototype, newer, V07) [Prototype] + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (prototype, older) [Prototype] + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Force (Japan, new version (Rev C)) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Force (Japan, old version) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Rival (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + Burning Rival (World) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + Bust-A-Move Again (Ver 2.3A 1995/07/31) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + Buster Bros. (USA) + 1989 + Mitchell (Capcom license) + + + + + + + + + + + + But-ten Ohara's Suit-Cha Luck-a Dog-Fight (Japan) + 1984 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + Butasan (Japan, Japanese) + 1987 + NMK (Jaleco license) + + + + + + + + + + + + + + + + + + + + + Butasan - Pig's & Bomber's (Japan, English) + 1987 + NMK (Jaleco license) + + + + + + + + + + + + + + + + + + + + + Buzzard + 1984 + Crux + + + + + + + + + + + + + + + + + + + + + + + Bygone [Imperfect sound] + 1985 + Taito Corporation + + + + + + + + + + + + + Cabal (korea?, Joystick) + 1988 + TAD Corporation (Alpha Trading license) + + + + + + + + + + + + + + + + Cabal (Neo-Geo Unfinished Conversion) [Hack, Buggy, works in MVS mode only!] + 1988 + TAD Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cabal (UK, Joystick) + 1988 + TAD Corporation (Electrocoin license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cabal (UK, Trackball) + 1988 + TAD Corporation (Electrocoin license) + + + + + + + + + + + + + + + + Cabal (US set 1, Trackball) + 1988 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + Cabal (US set 2, Trackball) + 1988 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + Cabal (World, Joystick) + 1988 + TAD Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cachat (Japan) + 1993 + Taito Corporation + + + + + + + + + Cactus (bootleg of Saboten Bombers) + 1992 + bootleg + + + + + + + + + + + + Cadash (France) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (Germany, version 1) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (Italy) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (Japan, oldest version) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Cadash (Japan, version 1) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Cadash (Japan, version 2) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Cadash (Spain, version 1) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (US, version 1?) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Cadash (US, version 2) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Cadash (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (World, prototype) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadillacs & Dinosaurs (930201 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cadillacs & Dinosaurs (930201 World) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cadillacs & Dinosaurs (930223 Asia TW) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (28th-Anniversary, Hack) [Hack] + 2021-03-25 + Hack + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 1 (with PIC16c57), 930201 etc) [Bootleg, No sound] + 1993 + Capcom + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 2 (with PIC16c57), 930201 etc) [Bootleg, No sound] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 3 (with PIC16c57), 930201 etc) [Bootleg, No sound] + 1993 + Capcom + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 3, 930223 Asia TW) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 4 (with PIC16c57), 930201 etc) [Bootleg, No sound] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (bootleg set 5 (with PIC16c57), 930223 Asia TW) [Bootleg] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (Chinese bootleg, 930223 Asia TW) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (God of War Edition, Hack) [Hack] + 2021-04-08 + Hack + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (GOTVG 10th Anniversary Edition, Hack) [Hack] + 2021-03-03 + Hack + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (hack, 930201 etc) [Hack] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs Turbo (bootleg set 1, 930223 Asia TW) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + Cadillacs and Dinosaurs Turbo (bootleg set 2 (with PIC16c57), 930201 etc) [Bootleg, No sound] + 1993 + bootleg + + + + + + + Cadillacs Kyouryuu-Shinseiki (930201 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caliber 50 + 1989 + Athena / Seta + + + + + + + + + + + + + + + + Calipso + 1982 + Stern (Tago license) + + + + + + + + + + + + + + Calorie Kun vs Moguranian + 1986 + Sega + + + + + + + + + + + + + + + + + Calorie Kun vs Moguranian (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + Cameltry (Japan, YM2610) + 1989 + Taito Corporation + + + + + + + + + Cameltry (US, YM2203 + M6295) + 1989 + Taito America Corporation + + + + + + + + + Cameltry (US, YM2610) + 1989 + Taito America Corporation + + + + + + + + + Cameltry (World, YM2203 + M6295) + 1989 + Taito America Corporation + + + + + + + + + Candory (Bootleg) [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + + + Candy Candy + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Cannon Ball (Pacman Hardware) [wrong colors] + 1985 + Novomatic + + + + + + + + + + + + + + + + + Cannon Ball (Yun Sung, horizontal) + 1995 + Yun Sung / Soft Vision + + + + + + + + + + + Cannon Ball (Yun Sung, vertical) + 1995 + Yun Sung / J&K Production + + + + + + + + + + + Cannon Dancer (Japan) + 1996 + Mitchell (Atlus license) + + + + + + + + + + + + Canvas Croquis + 1985 + SNK + + + + + + + + + + + + + + + + + + + + Canyon Bomber (prototype) [No sound] + 1977 + Atari + + + + + + + + + + + Canyon Bomber [No sound] + 1977 + Atari + + + + + + + + + + Capcom Bowling (set 1) + 1988 + Incredible Technologies / Capcom + + + + + + + + Capcom Bowling (set 2) + 1988 + Incredible Technologies / Capcom + + + + + + + + Capcom Bowling (set 3) + 1988 + Incredible Technologies / Capcom + + + + + + + + Capcom Bowling (set 4) + 1988 + Incredible Technologies / Capcom + + + + + + + + Capcom Sports Club (970722 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + Capcom Sports Club (970722 Euro Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Capcom Sports Club (970722 Euro) + 1997 + Capcom + + + + + + + + + + + + + + + + Capcom Sports Club (970722 Hispanic) + 1997 + Capcom + + + + + + + + + + + + + + + + Capcom Sports Club (970722 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + Capcom Sports Club (970722 Japan, yellow case) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Capcom Sports Club (971017 Euro) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Capcom World (Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + Capitol + 1981 + bootleg? (Universal Video Spiel) + + + + + + + + + + + + + + + + + Captain America and The Avengers (Asia Rev 1.0) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (Asia Rev 1.4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (Japan Rev 0.2) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (UK Rev 1.4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (US Rev 1.4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (US Rev 1.6) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (US Rev 1.9) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (910928 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (910928 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (911014 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (911202 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (911202 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (bootleg set 1, 911014 other country) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + Captain Commando (bootleg set 2 (with 2xMSM5205), 911014 other country) [Bootleg, unemulated graphics] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + Captain Commando (bootleg set 3 (with YM2151 + 2xMSM5205), 911014 other country) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + Captain Commando (Enhanced edition 1 V 4, Hack) [Hack] + 2015-12-05 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Commando (Unlimited Bullet) [Hack] + 2021-02-24 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + Captain Silver (Japan revision 1) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + Captain Silver (Japan revision 3) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + Captain Silver (World) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + Captain Tomaday + 1999 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Car Jamboree + 1983 + Omori Electric Co., Ltd. + + + + + + + + + + + + + + + + + + + + Carnival (cocktail) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carnival (upright) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carrier Air Wing (bootleg set 1 (with 2xYM2203 + 2xMSM5205), U.S. navy 901012 etc) [Bootleg] + 1990 + bootleg + + + + + + + + + + Carrier Air Wing (bootleg set 2 (with 2xYM2203 + 2xMSM5205), U.S. navy 901012 etc) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carrier Air Wing (U.S. navy 901009 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Carrier Air Wing (U.S. navy 901012 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Carrier Air Wing (U.S. navy 901012 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Carrier Air Wing (U.S. navy 901130 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Casanova + 199? + Promat + + + + + + + + + + + + + + + + + + + + + + + Cash Quiz (Type B, Version 5) [Missing graphics due to undumped ROM!] + 1986 + Zilec-Zenitone + + + + + + + + + + + + + + + + + Catacomb [Bad Colours] + 1982 + MTM Games + + + + + + + + + + Caterpillar Pacman Hack + 1982 + hack + + + + + + + + + + + + + + + + + + + Catt (Japan) + 1993 + Wintechno + + + + + + + + + + + + + + + + + + + Cavelon + 1983 + Jetsoft + + + + + + + + + + Caveman Ninja (bootleg) [Bootleg] + 1991 + bootleg + + + + + + + + + Caveman Ninja (US ver 4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caveman Ninja (World ver 1) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caveman Ninja (World ver 4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Center Court (World, 4 Players, prototype, MC-8123B) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + Centipede (revision 3) [2 Player version] + 1980 + Atari + + + + + + + + + + Centipede (revision 4) [1 Player version] + 1980 + Atari + + + + + + + + + + Chack'n Pop + 1983 + Taito Corporation + + + + + + + + + + + + + + + Chain Reaction (World, Version 2.2, 1995.09.25) + 1995 + Data East + + + + + + + + + + + + Chameleon + 1983 + Jaleco + + + + + + + + + + + + + + Champion Wrestler (Japan) + 1989 + Taito Corporation + + + + + + + + + + + Champion Wrestler (US) + 1989 + Taito America Corporation + + + + + + + + + + + Champion Wrestler (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + Chanbara + 1985 + Data East + + + + + + + + + + + + + + + + + + + + + Chance Kun (Japan) + 1988 + Peni Soft + + + + + + + + + + + + + + + + Change Air Blade (Japan) + 1999 + Sammy + + + + + + + + + + + Changes + 1982 + Orca + + + + + + + + + + + + Changes (EME license) + 1982 + Orca (Eastern Micro Electronics, Inc. license) + + + + + + + + + + + + Chaos (PGM Demo) [Demo, Demo Game] + 2005 + Raster + + + + + + + + + + + + + + Chaos Demo (CPS-1) [Demo] + 2000 + Chaos + + + + + + + + + + + + + + + Chaos Demo (Neo Geo) [Demo] + 2002 + Chaos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Charlie Ninja + 1995 + Mitchell + + + + + + + + + Chase Bombers (Japan Prototype) [Prototype] + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase Bombers (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase Bombers (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (Japan UP) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chatan Yara Kuushanku - The Karate Tournament (Japan) + 1992 + Mitchell + + + + + + + + + + + Check Man + 1982 + Zilex-Zenitone + + + + + + + + + + + + + Check Man (Japan) + 1982 + Jaleco + + + + + + + + + + Cheeky Mouse + 1980 + Universal + + + + + + + + + + + + + + + + + + + + + Cheese Chase + 1994 + Art & Magic + + + + + + + + Chelnov - Atomic Runner (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Chelnov - Atomic Runner (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + Chelnov - Atomic Runner (World) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Chequered Flag + 1988 + Konami + + + + + + + + + + + + + + + Chequered Flag (Japan) + 1988 + Konami + + + + + + + + + + + + + + + Chewing Gum + 1980 + unknown + + + + + + + + Chi-Toitsu + 1988 + Yuga + + + + + + + + + + + + Chibi Marukochan Deluxe Quiz + 1995 + Takara + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chiki Chiki Boys (900619 Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chimera Beast (prototype) + 1993 + Jaleco + + + + + + + + + + + + + + + + China Gate (US) + 1988 + Technos Japan (Taito Romstar license) + + + + + + + + + + + + + + + + + + + China Town (Japan) + 1991 + Data East Corporation + + + + + + + + + + Chip n Dale (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Choko (010820 Japan) + 2001 + Mitchell + + + + + + + + + + + + + + + + + Choky! Choky! + 1995 + SemiCom + + + + + + + + + + + + + + + Choplifter (8751 315-5151) [The (unprotected) or (bootleg) versions work fine.] + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Choplifter (bootleg) [Bootleg] + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Choplifter (unprotected) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US ver 1?) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US ver 2) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chouji Meikyuu Legion (Japan ver 1.05) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + Chouji Meikyuu Legion (Japan ver 1.05, bootleg) + 1987 + Nichibutsu + + + + + + + + + + + + + + + Choutetsu Brikin'ger - Iron clad (Prototype) [Prototype] + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Choutetsu Brikin'ger - Iron clad (Prototype, older) [Prototype] + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chuka Taisen (Japan) (P0-025-A PCB) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Chuka Taisen (Japan) (P0-028-A PCB) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + Chuka Taisen (US) (P0-028-A PCB) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Chuka Taisen (World) (P0-028-A PCB) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Chulgyeok D-Day (Korea) + 1990 + Dooyong + + + + + + + + + + + + + + + + + + + Chuugokuryuu 3 Special (ver. 100, Japan) + 1998 + IGS (Alta Co., LTD License) + + + + + + + + + + + + + + + + + Chuugokuryuu 3 Special (ver. 103, japan) + 1998 + IGS (Alta Co., LTD License) + + + + + + + + + + + + + + + + + Chuugokuryuu II (V100, Japan) + 1997 + IGS + + + + + + + + + + + + + Chuugokuryuu II (V101, Japan) + 1997 + IGS + + + + + + + + + + + + + Circus Charlie (Centuri) + 1984 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + Circus Charlie (Centuri, earlier) + 1984 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + Circus Charlie (level select, set 1) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Circus Charlie (level select, set 2) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Circus Charlie (level select, set 3) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Circus Charlie (no level select) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Cisco Heat [Imperfect graphics] + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + City Bomber (Japan) + 1987 + Konami + + + + + + + + + + + + + City Bomber (World) + 1987 + Konami + + + + + + + + + + + + + City Connection (set 1) + 1985 + Jaleco + + + + + + + + + + + + + + + + City Connection (set 2) + 1985 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Clash-Road + 1986 + Wood Place Inc. + + + + + + + + + + + + + + + + + + + + + Clash-Road (Data East license) + 1986 + Wood Place Inc. (Data East license) + + + + + + + + + + + + + + + + + + + + + Clash-Road (Status license) + 1986 + Wood Place Inc. (Status Game Corp. license) + + + + + + + + + + + + + + + + + + + + + + + + + Cleopatra Fortune (Ver 2.1J 1996/09/05) + 1996 + Taito Corporation + + + + + + + + + + + + + + + Cloak & Dagger (French) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Cloak & Dagger (German) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Cloak & Dagger (rev 5) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Cloak & Dagger (Spanish) + 1983 + Atari + + + + + + + + + + + + + + + + + + + Cloud 9 (prototype) [Prototype] + 1983 + Atari + + + + + + + + + + + + + + + + Cluster Buster (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clutch Hitter (set 1, Japan, FD1094 317-0175 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + Clutch Hitter (set 1, Japan, FD1094 317-0175) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + Clutch Hitter (set 2, US, FD1094 317-0176 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + Clutch Hitter (set 2, US, FD1094 317-0176) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + Cobra-Command (Italian bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + Cobra-Command (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Cobra-Command (Japan, bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Cobra-Command (Japan?, set 2) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + Cobra-Command (World/US revision 4) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Cobra-Command (World/US revision 5) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Cobra-Command (World/US) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Coccinelle (bootleg of Lady Bug, set 2) + 1981 + bootleg (Model Racing) + + + + + + + + + + + + + + + + Codename - Blut Engel (2006-01-19) [Homebrew] + 2006 + blastar@gmx.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Colony 7 (set 1) + 1981 + Taito + + + + + + + + + + + + + + Colony 7 (set 2) + 1981 + Taito + + + + + + + + + + + + + + Columns (Neo Geo) [Homebrew] + ???? + homebrew + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Combat Hawk + 1987 + Sega / Sanritsu + + + + + + + + + + + + + + + + + + + + Combat School (joystick) + 1988 + Konami + + + + + + + + + + + + + + + + + + Come Back Toto + 1996 + SoftClub + + + + + + + + + + Come Come (Petaco SA bootleg of Puck Man) [Bootleg] + 1980 + bootleg (Petaco SA) + + + + + + + + + + + + + + + + + + + Come-Cocos (Ms. Pac-Man) ('Made in Greece' Herle SA bootleg) [Bootleg] + 1981 + bootleg (Herle SA) + + + + + + + + + Come-Cocos (Ms. Pac-Man) ('Made in Greece' Tecnausa bootleg) [Bootleg] + 1981 + bootleg (Tecnausa) + + + + + + + + + Come-Cocos (Ms. Pac-Man) (Cocomatic bootleg) [Bootleg] + 1981 + bootleg (Cocomatic) + + + + + + + + + Command War - Super Special Battle & War Game (Ver 0.0J) (Prototype) [Prototype] + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Commando (bootleg set 1) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Commando (bootleg set 2) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Commando (bootleg set 3) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Commando (Sega) + 1983 + Sega + + + + + + + + + + + + + + + + Commando (US set 1) + 1985 + Capcom (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + Commando (US set 2) + 1985 + Capcom (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + Commando (World) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + CoMOTION + 1976 + Gremlin + + + + + + + + + + Complex X + 1984 + Taito America Corporation + + + + + + + + + + + + + + + + + Condor (S C Novar bootleg of Phoenix) + 1981 + bootleg (S C Novar) + + + + + + + + + + + + + + + + Condor (Sidam bootleg of Phoenix) + 1981 + bootleg (Sidam) + + + + + + + + + + + + + + + + + Congo Bongo + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Congo Bongo (Rev C, 3 board stack) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Continental Circus (Japan) [3D Effect cannot be disabled, use World romset instead!] + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Continental Circus (US set 1) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Continental Circus (US set 2) [3D Effect cannot be disabled, use US Set 1 instead!] + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Continental Circus (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + Contra (bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Contra (Japan bootleg, set 1) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Contra (Japan bootleg, set 2) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Contra (Japan, set 1) + 1987 + Konami + + + + + + + + + + + + + + + Contra (Japan, set 2) + 1987 + Konami + + + + + + + + + + + + + + + Contra (US / Asia, set 1) + 1987 + Konami + + + + + + + + + + + + + + + Contra (US / Asia, set 2) + 1987 + Konami + + + + + + + + + + + + + + + Contra (US / Asia, set 3) + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Cookie & Bibi (set 1) + 1995 + SemiCom + + + + + + + + + + + + + + + Cookie & Bibi (set 2) + 1995 + SemiCom + + + + + + + + + + + + + + + Cookie & Bibi 2 (set 1) + 1996 + SemiCom + + + + + + + + + + + + Cookie & Bibi 2 (set 2) + 1996 + SemiCom + + + + + + + + + + + + Cookie & Bibi 2 (set 3) + 1996 + SemiCom + + + + + + + + + + + + Cookie & Bibi 3 + 1997 + SemiCom + + + + + + + + + + + + Cool Minigame Collection + 1999 + SemiCom + + + + + + + + + + + + + + Cool Minigame Collection (Italy) + 1999 + SemiCom + + + + + + + + + + + + + + Coors Light Bowling + 1989 + Incredible Technologies / Capcom + + + + + + + + Cop 01 (set 1) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Cop 01 (set 2) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Cosmic Avenger + 1981 + Universal + + + + + + + + + + + + + + + Cosmic Cop (World) + 1991 + Irem + + + + + + + + + + + + + + + Cosmo Gang the Puzzle (Japan) + 1992 + Namco + + + + + + + Cosmo Gang the Puzzle (US) + 1992 + Namco + + + + + + + Cosmo Gang the Video (US) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Cosmo Police Galivan (12/11/1985) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Cosmo Police Galivan (12/16/1985) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Cosmo Police Galivan (12/26/1985) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Cotocoto Cottong + 1982 + bootleg + + + + + + + + + + + + + + + + Cotton (set 1, Japan, Rev A, FD1094 317-0179a decrypted)) [Bootleg] + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 1, Japan, Rev A, FD1094 317-0179a)) + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 2, Japan, Rev B, FD1094 317-0179b decrypted)) [Bootleg] + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 2, Japan, Rev B, FD1094 317-0179b)) + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 2, US, FD1094 317-0180 decrypted) [Bootleg] + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 2, US, FD1094 317-0180) + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 3, World, FD1094 317-0181a decrypted) [Bootleg] + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cotton (set 3, World, FD1094 317-0181a) + 1991 + Success / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Counter Run (bootleg set 1) + 1988 + bootleg + + + + + + + + + + + + + + + + + Counter Run (NS6201-A 1988.3) [Please use countrunb instead!] + 1988 + Nihon System (Sega license) + + + + + + + + + + + + + + + + + Country Club [bad inputs, use fitegolf instead!] + 1988 + SNK + + + + + + + + + + + + + + + + + + + Crack Down (Japan, Floppy Based, FD1094 317-0058-04b Rev A) + 1989 + Sega + + + + + + + Crack Down (US, Floppy Based, FD1094 317-0058-04d) + 1989 + Sega + + + + + + + Crack Down (World, Floppy Based, FD1094 317-0058-04c) + 1989 + Sega + + + + + + + Crash (bootleg of Head On) [Bootleg, No sound] + 1979 + bootleg (Fraber) + + + + + + + + + + + + Crayon Shinchan Orato Asobo (Japan) + 1993 + Taito Corporation + + + + + + + + + + Crazy Balloon (set 1) + 1980 + Taito Corporation + + + + + + + + + + + Crazy Balloon (set 2) + 1980 + Taito Corporation + + + + + + + + + + + Crazy Blocks + 1983 + Kiwako (ECI license) + + + + + + + + + + + Crazy Climber (Japan) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + Crazy Climber (US set 1) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + Crazy Climber (US set 2) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + Crazy Climber 2 (Japan) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Crazy Climber 2 (Japan, Harder) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Crazy Cop (Japan) + 1988 + Konami + + + + + + + + + + + + Crazy Fight + 1996 + Subsino + + + + + + + + + + + + + + Crazy Kong + 1981 + Kyoei / Falcon + + + + + + + + + + + + + + + + + + + Crazy Kong (bootleg on Galaxian hardware) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Crazy Kong (bootleg on Moon Cresta hardware) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + Crazy Kong (Scramble hardware) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + Crazy Kong Part II (alternative levels) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Crazy Kong Part II (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Crazy Kong Part II (Japan) + 1981 + Falcon + + + + + + + + + + + + + + + + + + + + Crazy Kong Part II (Jeutel bootleg) + 1981 + bootleg (Jeutel) + + + + + + + + + + + + + + + + + + + + Crazy Kong Part II (set 1) + 1981 + Falcon + + + + + + + + + + + + + + + + + + + + Crazy Kong Part II (set 2) + 1981 + Falcon + + + + + + + + + + + + + + + + + + + + Crazy Rally (Gecas license) [Graphics issues on some levels] + 1985 + Tecfri (Gecas license) + + + + + + + + + + + + + + + + + + + + Crazy Rally (set 1) [Graphics issues on some levels] + 1985 + Tecfri + + + + + + + + + + + + + + + + + + + + Crazy Rally (set 2) [Graphics issues on some levels] + 1985 + Tecfri + + + + + + + + + + + + + + + + + + + + Crazy War + 2002 + Eolith + + + + + + + + + + + + + + + + + + + + + + + Cresta Mundo (Laguna S.A. Spanish Moon Cresta bootleg) [Bootleg] + 1980 + bootleg (Laguna S.A.) + + + + + + + + + + + + + + + + Crime City (Japan) + 1989 + Taito Corporation + + + + + + + + + + + Crime City (US) + 1989 + Taito America Corporation + + + + + + + + + + + Crime City (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + Crime Fighters (Japan 2 Players) + 1989 + Konami + + + + + + + + + + + Crime Fighters (US 4 Players) + 1989 + Konami + + + + + + + + + + + Crime Fighters (World 2 players) + 1989 + Konami + + + + + + + + + + + Crime Fighters 2 (Japan, 2 Players ver. P) + 1991 + Konami + + + + + + + + + + + + + Crime Fighters 2 (Japan, 4 Players ver. N) + 1991 + Konami + + + + + + + + + + + + + Crock-Man (bootleg, Rene-Pierre) [Bootleg] + 1980 + bootleg (Rene-Pierre) + + + + + + + + + + + + + + + + + + + Crock-Man (Marti Colls bootleg of Rene Pierre Crock-Man) [Bootleg] + 1980 + bootleg (Marti Colls) + + + + + + + + + + + + + + + + + + + Croquis (Germany) + 1996 + Deniam + + + + + + + + + + + + Croquis (Korea) + 1996 + Deniam + + + + + + + + + + + + Cross Blades! (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + Cross Pang + 1998 + F2 System + + + + + + + + + + + + + Crossed Swords (ALM-002)(ALH-002) + 1991 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crossed Swords 2 (bootleg CD to cartridge conversion) + 1991 + bootleg (Razoola) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crouching Poney Hidden Dragon (DEMO) [Homebrew] + 2013 + Le Cortex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crouching Tiger Hidden Dragon 2003 (set 1) [Bootleg, Hack of "The King of Fighters 2001"] + 2003 + Phenixsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crouching Tiger Hidden Dragon 2003 (set 2) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crouching Tiger Hidden Dragon 2003 Super Plus [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crouching Tiger Hidden Dragon 2003 Super Plus alternate [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crude Buster (Japan FR revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Crude Buster (World FU version) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Crude Buster (World FX version) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Cruisin + 1985 + Jaleco (Kitkorp license) + + + + + + + + + + + + + + + + Crush Roller (bootleg set 1) + 1981 + Kural Samno Electric + + + + + + + + + + + + + Crush Roller (bootleg set 2) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + Crush Roller (bootleg set 3) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + Crush Roller (Kural - bootleg?) + 1981 + Kural Electric + + + + + + + + + + + + + + + + + + + Crush Roller (Kural Esco - bootleg?) + 1981 + Kural Esco Electric + + + + + + + + + + + + + + + + + + + Crush Roller (Kural Samno) + 1981 + Kural Samno Electric + + + + + + + + + + + + + Crush Roller (Kural TWT) + 1981 + Kural TWT + + + + + + + + + Crush Roller (Sidam bootleg) + 19?? + [Kural] (Sidam bootleg) + + + + + + + + + + + Crusher Makochan (Japan) + 1999 + Takumi + + + + + + + + + Crystal Castles (joystick version) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 1) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 2) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 3) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 3, French) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 3, German) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 3, Spanish) + 1983 + Atari + + + + + + + + + + + + + + Crystal Castles (version 4) + 1983 + Atari + + + + + + + + + + + + + + Cuby Bop (location test) + 199? + Hot-B Co., Ltd. + + + + + + + + Cue Brick (Japan) + 1989 + Konami + + + + + + + + + + + + + + + Cue Brick (World, version D) + 1989 + Konami + + + + + + + + + + + + + Curve Ball + 1984 + Mylstar + + + + + + + + + + + + + + + Cute Fighter + 1998 + SemiCom + + + + + + + + + + + + + + + + + + Cutie Q + 1979 + Namco + + + + + Cybattler + 1993 + Jaleco + + + + + + + + + + + + + + + + Cyber Tank (v1.4) + 1988 + Coreland + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyber-Lip (NGM-010) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots - fullmetal madness (950420 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots - fullmetal madness (950424 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots - fullmetal madness (950424 USA Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots - fullmetal madness (950424 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots - fullmetal madness (Japan 950424) (decrypted bootleg) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Cyvern (Japan) + 1998 + Kaneko + + + + + + + + + + + + + + + + Cyvern (US) + 1998 + Kaneko + + + + + + + + + + + + + + + + D-Con + 1992 + Success + + + + + + + + + + + + + + + + + + D-Day + 1982 + Olympia + + + + + + + + + + + + + + + + + + + D-Day (Centuri) + 1982 + Olympia (Centuri license) + + + + + + + + + + + + + + + + + + + D-Day (Jaleco set 1) + 1984 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + D-Day (Jaleco set 2) + 1984 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 1, World, 4 Players, FD1094 317-? decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 1, World, 4 Players, FD1094 317-?) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 2, World, 2 Players, FD1094 317-0184 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 2, World, 2 Players, FD1094 317-0184) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 3, US, 4 Players, FD1094 317-0186 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 3, US, 4 Players, FD1094 317-0186) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 4, World, 3 Players, FD1094 317-0190 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 4, World, 3 Players, FD1094 317-0190) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 5, Japan, 4 Players, FD1094 317-0185 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 5, Japan, 4 Players, FD1094 317-0185) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 6, Japan, 2 Players, FD1094 317-0182 decrypted) [Bootleg] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + D. D. Crew (set 6, Japan, 2 Players, FD1094 317-0182) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + Dacholer + 1983 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Dai Makai-Mura (bootleg, Japan) [Bootleg] + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dai Makai-Mura (Japan Resale Ver.) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dai Makai-Mura (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dai Ressya Goutou (Japan) + 1986 + Konami (Kawakusu license) + + + + + + + + + + + + + + + Daikaiju no Gyakushu + 1986 + Taito + + + + + + + + + + + + + + + + + + + + Daiku no Gensan (Japan, M72 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Daiku no Gensan (Japan, M84 hardware) + 1990 + Irem + + + + + + + + + + + + + + + + + Daioh + 1993 + Athena + + + + + + + + + + Daioh (93111A PCB conversion) + 1993 + Athena + + + + + + + + + + + + + + + + + + + + Daioh (earlier) + 1993 + Athena + + + + + + + + + + Daioh (prototype) [Prototype] + 1993 + Athena + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Daisenpu (Japan) + 1989 + Taito Corporation + + + + + + + + + + Daitoride + 1995 + Metro + + + + + + + + + + + Daitoride (YMF278B version) + 1996 + Metro + + + + + + + + + + + Dambusters (UK) + 1981 + South West Research + + + + + + + + + + + + + + + + + Dambusters (US, set 1) + 1981 + South West Research + + + + + + + + + + + + + + + + + Dambusters (US, set 2) + 1981 + South West Research + + + + + + + + + + + + + + + + + Dan-Ku-Ga (Ver 0.0J 1994/12/13) (Prototype) [Prototype, Missing graphics are normal in this prototype] + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Danger Track (Rally X bootleg) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + + Dangerous Seed (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + Dangun Feveron (Japan, ver. 98/09/17) + 1998 + Cave / Nihon System inc. + + + + + + + + + + + Daraku Tenshi - The Fallen Angels + 1998 + Psikyo + + + + + + + + + + + + + + + + + + + + + + Darius (Extra) (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (Japan old version) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (US) + 1986 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (World) + 1986 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (Ver 2.5A 1994/09/19) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (Ver 2.5J 1994/09/19) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (Ver 2.5O 1994/09/19) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk Extra Version (Ver 2.7J 1995/03/06) (Official Hack) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + Darius II (dual screen) (Japan old version) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Darius II (dual screen) (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Darius II (dual screen) (World) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Darius II (triple screen) (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Dark Adventure + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + Dark Edge (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + Dark Edge (World) [Background GFX Issues] + 1992 + Sega + + + + + + + + + + + + + + + + + + Dark Planet + 1982 + Stern + + + + + + + + + + + + + + + Dark Seal (Japan) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Dark Seal (World revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Dark Seal (World revision 3) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Dark Seal 2 (Japan v2.1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Dark Tower + 1992 + Game Room + + + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940705 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940705 Euro) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940705 USA Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940705 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940818 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers - the night warriors (940818 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + DarkWing Duck (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DarkWing Duck (Intro demo, alt) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darwin 4078 (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Date Quiz Go Go (Korea) + 1998 + SemiCom + + + + + + + + + + + + + + + Date Quiz Go Go Episode 2 + 2000 + SemiCom + + + + + + + + + + + + Datsugoku - Prisoners of War (Japan) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Dead Angle + 1988 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + Dead Connection (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + Dead Connection (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + Death Brade (Japan ver JM-3) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Deco Cassette System Multigame (ROM based) [Bootleg] + 2008 + bootleg (David Widel) + + + + + + + + + + + Deer Hunting USA V1 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V2 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V3.0 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V4.0 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V4.2 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V4.3 + 2000 + Sammy USA Corporation + + + + + + + + + + Deer Hunting USA V4.4.1 (Japan) + 2000 + Sammy USA Corporation + + + + + + + + + + Defence Command (Defender bootleg) [Bootleg] + 1981 + bootleg (Outer Limits) + + + + + + + + + + + + + + Defend the Terra Attack on the Red UFO + 1981 + Artic + + + + + + + + + + + + + Defend the Terra Attack on the Red UFO (bootleg, set 1) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Defend the Terra Attack on the Red UFO (bootleg, set 2) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Defender (Blue label) + 1980 + Williams + + + + + + + + + + + + + + + Defender (Green label) + 1980 + Williams + + + + + + + + + + + + + + + + Defender (Red label) + 1980 + Williams + + + + + + + + + + + + + + + + + Defender (White label) + 1980 + Williams + + + + + + + + + + + + + + + Defense (System 16B, FD1089A 317-0028) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + Defense Command (Defender bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + Delta Race + 1981 + bootleg (Allied Leisure) + + + + + + + + + + + Deluxe 4 U (ver. 0107, 07/01/2000) + 2000 + ESD + + + + + + + + + + + + + + + Deluxe 5 (ver. 0107, 07/01/2000, set 1) + 2000 + ESD + + + + + + + + + + + + + + + Deluxe 5 (ver. 0107, 07/01/2000, set 2) + 2000 + ESD + + + + + + + + + + + + + + + Deluxe 5 (ver. 0107, 07/01/2000, set 3) + 2000 + ESD + + + + + + + + + + + + + + + Demolition Derby + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + Demolition Derby (cocktail) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + Demolition Derby (MCR-3 Mono Board Version) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + Demon Front (M102XX, S101XX) + 2002 + IGS + + + + + + + + + + + + + + + + + + + Demon Front (M103XX, S103XX) + 2002 + IGS + + + + + + + + + + + + + + + + + + + Demon Front (M105XX, S105XX) + 2002 + IGS + + + + + + + + + + + + + + + + + + + Demon Front (VM105XX, S105XX, China, Single PCB Version) + 2002 + IGS + + + + + + + + + + + + + + + + Demon Front (VM107KR, S106KR, S101KR, Korea, Single PCB Version) + 2002 + IGS + + + + + + + + + + + + + + + + Demon's World / Horror Story (set 1) + 1990 + Toaplan + + + + + + + + + + + + + + + + + + Demon's World / Horror Story (set 2) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Demon's World / Horror Story (set 3) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Demon's World / Horror Story (set 4) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Demon's World / Horror Story (set 5) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Denjin Makai (set 1) + 1994 + Winkysoft (Banpresto license) + + + + + + + + + + + + + + + + + + + + Denjin Makai (set 2) + 1994 + Winkysoft (Banpresto license) + + + + + + + + + + + + + + + + + + + + Deroon DeroDero + 1995 + Tecmo + + + + + + + + + + + + + + + + + Deroon DeroDero (alt set) + 1995 + Tecmo + + + + + + + + + + + + + + + + + Deroon DeroDero (newer) + 1995 + Tecmo + + + + + + + + + + + + + + + + + Desert Assault (US 4 Players) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Desert Assault (US) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Desert Breaker (Japan, FD1094 317-0194 decrypted) [Bootleg] + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + Desert Breaker (Japan, FD1094 317-0194) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + Desert Breaker (World, FD1094 317-0196 decrypted) [Bootleg] + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + Desert Breaker (World, FD1094 317-0196) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + Desert Dan + 1982 + Video Optics + + + + + + + + + + + + + + + Desert War / Wangan Sensou (ver 1.0) + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Detana!! Twin Bee (Japan ver. J) + 1991 + Konami + + + + + + + + + + + + + + Devastators (ver. 2) [Minor Video glitches in level 2.] + 1988 + Konami + + + + + + + + + + + + + Devastators (ver. V) [Minor Video glitches in level 2.] + 1988 + Konami + + + + + + + + + + + + + Devastators (ver. X) [Minor Video glitches in level 2.] + 1988 + Konami + + + + + + + + + + + + + Devastators (ver. Z) [Minor Video glitches in level 2.] + 1988 + Konami + + + + + + + + + + + + + Devil Fish + 1982 + Artic + + + + + + + + + + + + + + + + + Devil Fish (Galaxian hardware, bootleg?) [Bootleg] + 1984 + Vision / Artic + + + + + + + + + + Devil World + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + Dharma Doujou + 1994 + Metro + + + + + + + + + + + Dharma Doujou (Germany) + 1994 + Metro + + + + + + + + + + + Dharma Doujou (Japan) + 1994 + Metro + + + + + + + + + + + Dharma Doujou (Korea) + 1994 + Metro + + + + + + + + + + + Diamond Run + 1985 + KH Video + + + + + + + + + + + + + + + + + + + Diet Family + 2001 + SemiCom + + + + + + + + + + + + Diet Go Go (Euro v1.1 1992.08.04) + 1992 + Data East Corporation + + + + + + + + + + + + + Diet Go Go (Euro v1.1 1992.09.26) + 1992 + Data East Corporation + + + + + + + + + + + + + Diet Go Go (Japan v1.1 1992.09.26) + 1992 + Data East Corporation + + + + + + + + + + + + + Diet Go Go (USA v1.1 1992.09.26) + 1992 + Data East Corporation + + + + + + + + + + + + + Dig Dug (Atari, rev 2) + 1982 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + Dig Dug (rev 2) + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + Dig Dug II (New Ver.) + 1985 + Namco + + + + + + + + + + + + + Dig Dug II (Old Ver.) + 1985 + Namco + + + + + + + + + + + + + Digger Man [Homebrew] + 2000 + Kyle Hodgetts + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dimahoo (000121 Euro) + 2000 + 8ing / Raizing / Capcom + + + + + + + + + + + + + + + + Dimahoo (000121 USA Phoenix Edition) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + Dimahoo (000121 USA) + 2000 + 8ing / Raizing / Capcom + + + + + + + + + + + + + + + + Dingo + 1983 + Ashby Computers and Graphics LTD. (Jaleco license) + + + + + + + + + + Dino Rex (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + Dino Rex (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + Dino Rex (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + Dinosaur Hunter (Chinese bootleg, 930223 Asia TW) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + Dirt Fox (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Disco No.1 + 1982 + Data East + + + + + + + + + + + Disco No.1 (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Disco No.1 (Rev.F) + 1982 + Data East + + + + + + + + + + + Discs of Tron (Environmental) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Discs of Tron (Upright, 10/4/83) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Discs of Tron (Upright, 9/22/83) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Diver Boy + 1992 + Electronic Devices Italy + + + + + + + + + + + + + + DJ Boy (Japan, set 1) + 1989 + Kaneko (Sega license) + + + + + + + + + + + + + + + + + DJ Boy (Japan, set 2) + 1989 + Kaneko (Sega license) + + + + + + + + + + + + + + + + + + DJ Boy (US, set 1) + 1990 + Kaneko (American Sammy license) + + + + + + + + + + + + + + + + + DJ Boy (US, set 2) + 1990 + Kaneko (American Sammy license) + + + + + + + + + + + + + + + + + DJ Boy (World) + 1989 + Kaneko + + + + + + + + + + + + + + + + + Do! Run Run (set 1) + 1984 + Universal + + + + + + + + + + + + + + + Dock Man + 1982 + Taito Corporation + + + + + + + + + + + + + Dodge Man + 1983 + Omori Electric Co., Ltd. + + + + + + + + + + + + + + DoDonPachi (Arrange Mode version 1.1, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + + + + DoDonPachi (International, master ver. 97/02/05) + 1997 + Atlus / Cave + + + + + + + + + + + + + + + DoDonPachi (Japan, master ver. 97/02/05) + 1997 + Atlus / Cave + + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou (Japan, 2002.04.05 Master Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou (Japan, 2002.04.05 Master Ver, location test) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou (V100, Japan, 2002.04.05.Master Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou (V101, Japan, 2002.04.05.Master Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou Black Label (2002.10.07 Black Ver., bootleg Knights of Valour Super Heroes conversion) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou Black Label (Japan, 2002.10.07 Black Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + DoDonPachi Dai-Ou-Jou Black Label (Japan, 2002.10.07.Black Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + DoDonPachi III (World, 2002.05.15 Master Ver) + 2002 + Cave (AMI license) + + + + + + + + + + + + + + Dog Fight (Thunderbolt) + 1983 + Orca / Thunderbolt + + + + + + + + + + + + + Dogou Souken + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + Dogou Souken (Joystick hack bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Dogyuun + 1992 + Toaplan + + + + + + + + + Dogyuun (Licensed to Unite Trading For Korea) + 1992 + Toaplan + + + + + + + + + Dogyuun (test location version) + 1992 + Toaplan + + + + + + + + + Dokaben (Japan) + 1989 + Capcom + + + + + + + + + + + + + Dolmen + 1995 + Afega + + + + + + + + + + + + Domino Man + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + Dommy + 198? + Technos + + + + + + + + + + + Don Doko Don (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + Don Doko Don (US) + 1989 + Taito Corporation + + + + + + + + + + + + Don Doko Don (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + Donkey King Jr. (bootleg of Donkey Kong Jr.) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (2600 graphics, hack) [Hack] + 1999 + Vic Twenty George + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 1) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 2) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 3) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Pacman Graphics) [Hack] + 2001 + Hack (Tim Appleton) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Patched) [Hack] + 2007 + Hack (Don Hodges) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (US set 1) + 1981 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (US set 1) with Hard kit + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (US set 2) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong - Arcade Rainbow (hack) [Hack] + 2015 + hack (john Kowalski) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong - Pauline Edition (hack, rev 5) [Hack] + 2013 + hack (Clay Cowgill) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong 3 (bootleg on Donkey Kong Jr. hardware) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + + + + + + + Donkey Kong 3 (Japan) + 1983 + Nintendo + + + + + + + + + + + + + + + + + + + Donkey Kong 3 (US) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + Donkey Kong Christmas Remix (Hack) [Hack] + 2017 + Sock Master + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Crazy Barrels Edition [Hack] + 2019 + Hack (Paul Goes) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Foundry (hack) [Hack] + 2004 + hack (Jeff Kulczycki) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong II - Jumpman Returns (hack, V1.1) [Hack] + 2006 + hack (Braze Technologies) + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong II - Jumpman Returns (hack, V1.2) [Hack] + 2006 + hack (Braze Technologies) + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Jr. (bootleg) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Jr. (Japan) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Jr. (Moon Cresta hardware) [Bootleg, Bad Colours] + 1982 + bootleg + + + + + + + + + + + + + + + Donkey Kong Junior (Japan?) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Junior (US set F-2) + 1982 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Junior (US, bootleg?) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong On the Run v1.02 [Hack] + 2020 + Hack (Paul Goes) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Pace [Hack] + 2016 + Hack (Sock Master) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Randomized Edition v1.01 [Hack] + 2020 + Hack (Paul Goes) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Remix (Demo) [Hack] + 2015 + Hack (Sockmaster) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Reverse (Hack) [Hack] + 2019 + Hack (Paul Goes) + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Spooky Remix (Hack) [Hack] + 2018 + Sock Master + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Trainer 1.01 [Hack] + 2016 + Hack (Sock Master) + + + + + + + + + + + + + + + + + + + + + + + DonPachi (Hong Kong, ver. 1.10, 95/05/17) + 1995 + Atlus / Cave + + + + + + + + + + + + + + + + + + + + + + + + + + + DonPachi (Japan, ver. 1.01, 95/05/11 satsuei) + 1995 + Atlus / Cave + + + + + + + + + + + + + + + + + + + + + + + + + + + DonPachi (Japan, ver. 1.01, 95/05/11) + 1995 + Atlus / Cave + + + + + + + + + + + + + + + + + + + + + + + + + + + DonPachi (Korea, ver. 1.12, 95/05/2x) + 1995 + Atlus / Cave + + + + + + + + + + + + + + + + + + + + + + + + + + + DonPachi (USA, ver. 1.12, 95/05/2x) + 1995 + Atlus / Cave + + + + + + + + + + + + + + + + + + + + + + + + + + + Dora-chan (Japan) [No sound] + 1980 + Alpha Denshi Co. / Craul Denshi + + + + + + + + + + + + + + + + + Dorodon (set 1) + 1982 + Falcon + + + + + + + + + + + + + + + Dorodon (set 2) + 1982 + Falcon + + + + + + + + + + + + + + + Dottori Kun (new version) + 1990 + Sega + + + + Dottori Kun (old version) + 1990 + Sega + + + + Dottori-Man Jr. + 2016 + hack (Chris Covell) + + + + Double Axle (US) + 1991 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Double Axle (US, Rev 1) + 1991 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Double Axle (US, Rev 1, Linkable) + 1991 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (bootleg with HD6309) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (bootleg with M6803) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (Boss hack) [Hack] + 1995 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (Japan) + 1987 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (Neo-Geo) + 1995 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (US set 1) + 1987 + [Technos] (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (US set 2) + 1987 + [Technos] (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (US set 3) + 1987 + [Technos] (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (World set 1) + 1987 + [Technos] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (World set 2) + 1987 + [Technos] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone (bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone (Japan) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone (prototype) [Prototype] + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone (US) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (Japan) + 1988 + Technos Japan + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (US bootleg, set 1) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (US bootleg, set 2) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (US) + 1988 + Technos Japan + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (World) + 1988 + Technos Japan + + + + + + + + + + + + + + + + + + + + + Double Dribble + 1986 + Konami + + + + + + + + + + + + + + + Double Dribble (prototype?) [Prototype] + 1986 + Konami + + + + + + + + + + + + + + + + + + + + + Double Point + 1995 + Min Corp. + + + + + + + + + + Double Point (Dong Bang Electron, bootleg?) + 1995 + Dong Bang Electron + + + + + + + + + + Double Wings (Asia) + 1994 + Mitchell + + + + + + + + + + + + + Double Wings (set 1) + 1993 + Mitchell + + + + + + + + + + + + + Double Wings (set 2) + 1993 + Mitchell + + + + + + + + + + + + + DownTown / Mokugeki (Joystick Hack) + 1989 + Seta + + + + + + + + + + + + + + + DownTown / Mokugeki (prototype) + 1989 + Seta + + + + + + + + + + + + + + + DownTown / Mokugeki (Set 1) + 1989 + Seta + + + + + + + + + + + + + + + DownTown / Mokugeki (Set 2) + 1989 + Seta + + + + + + + + + + + + + + + Dr. Micro + 1983 + Sanritsu + + + + + + + + + + + + + + + + + + + Dr. Tomy + 1993 + Playmark + + + + + + + + + + Dr. Toppel's Adventure (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + Dr. Toppel's Adventure (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Dr. Toppel's Adventure (World, alt?) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Dr. Toppel's Tankentai (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Dragon Ball Z V.R.V.S. (Japan, Rev A) + 1994 + Sega / Banpresto + + + + + + + + + + + + + + + + + + + Dragon Blaze + 2000 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Bowl + 1992 + Nics + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Bowl (set 2, unencrypted program) + 1992 + Nics + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Breed (Japan, M72 hardware) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + Dragon Breed (World, M72 hardware) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + Dragon Breed (World, M81 hardware) + 1989 + Irem + + + + + + + + + + + + + + + Dragon Buster [Missing sounds] + 1984 + Namco + + + + + + + + + + + + + + + + + Dragon Gun (Japan) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Gun (US) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Master (set 1) + 1994 + Unico + + + + + + + + + + + + + + Dragon Master (set 2) + 1994 + Unico + + + + + + + + + + + + + + Dragon Saber (Japan, Rev B) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Saber (World, DO2) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Saber (World, older?) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Spirit (DS2) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Spirit (new version (DS3)) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Spirit (old version (DS1)) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Unit / Castle of Dragon + 1989 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon World 2001 (V100, Japan) [Bad sound?] + 2001 + IGS (Alta Co., LTD License) + + + + + + + + + + + + + + + + + Dragon World 3 (V105) + 1998 + IGS + + + + + + + + + + + + + + + + + Dragon World 3 (V106, China) + 1998 + IGS + + + + + + + + + + + + + + + + + Dragon World 3 EX (V100, World) + 1998 + IGS + + + + + + + + + + + + + + + + + Dragon World 3 EX (V101, China) + 1998 + IGS + + + + + + + + + + + + + + + + + Dragon World II (V100, Hong Kong) + 1997 + IGS + + + + + + + + + + + + + Dragon World II (V100X, World) + 1997 + IGS + + + + + + + + + + + + + Dragon World II (V110X, World) + 1997 + IGS + + + + + + + + + + + + + Dragon World Pretty Chance (V101, Japan) [Bad sound?] + 2001 + IGS (Alta Co., LTD License) + + + + + + + + + + + + + + + + + Dragon World Pretty Chance (V110, China) [Bad sound?] + 2001 + IGS + + + + + + + + + + + + + + + + + Dragon's Heaven (development board) + 1996 + Face + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragonball Z (rev A) + 1993 + Banpresto + + + + + + + + + + + + + + + Dragonball Z (rev B) + 1993 + Banpresto + + + + + + + + + + + + + + + Dragonball Z 2 - Super Battle + 1994 + Banpresto + + + + + + + + + + + + + + + + + Dragonninja (bootleg with 68705) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragonninja (bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Dragonninja (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Drakton (DK conversion) [No sound] + 1984 + Epos Corporation + + + + + + + + + + + + + + + Drakton (DKJr conversion) [No sound] + 1984 + Epos Corporation + + + + + + + + + + + + + + + Dramatic Adventure Quiz Keith & Lucy (Japan) + 1993 + Visco + + + + + + + + + + + + Dream Ball (Japan V2.4) + 1993 + NDK / Data East + + + + + + Dream Land / Super Dream Land (bootleg of Bubble Bobble) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + Dream Shopper + 1982 + Sanritsu + + + + + + + + + + + + + + Dream Soccer '94 (Japan) + 1994 + Irem + + + + + + + + + + + + + + + + + + + + + + Dream Soccer '94 (Korea, M107 hardware) + 1994 + Irem (Data East Corporation license) + + + + + + + + + + + + + + + + + + Dream Soccer '94 (World, M107 hardware) + 1994 + Irem (Data East Corporation license) + + + + + + + + + + + + + + + + + + Dream World + 2000 + SemiCom + + + + + + + + + + + + + + + Dribbling (bootleg, Brazil) [Bootleg, No sound] + 1983 + bootleg (Videomac) + + + + + + + + + + + + + Dribbling (Olympia) [No sound] + 1983 + Model Racing (Olympia license) + + + + + + + + + + + + + Dribbling [No sound] + 1983 + Model Racing + + + + + + + + + + + + + Drift Out '94 - The Hard Order (Japan) + 1994 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + Drift Out (Europe) + 1991 + Visco (Europe) + + + + + + + + + Drift Out (Japan) + 1991 + Visco (Japan) + + + + + + + + + Drive Out [Bootleg] + 1991 + bootleg + + + + + + + + + + + Driving Force (Galaxian conversion bootleg) [Bootleg] + 1985 + bootleg (Elsys Software) + + + + + + + + Driving Force (Galaxian conversion) + 1984 + Shinkai Inc. (Magic Eletronics USA licence) + + + + + + + + + + + + + Driving Force (Pac-Man conversion) + 1984 + Shinkai Inc. (Magic Eletronics Inc. license) + + + + + + + DS Telejan (DECO Cassette) (Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dual Assault + 1984 + Data East USA + + + + + + + + + + + + + + + + + + Duck Tales (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dump Matsumoto (Japan, 8751 317-unknown) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeon Magic (Ver 2.1A 1994/02/18) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Dungeon Magic (Ver 2.1O 1994/02/18) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960206 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960208 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960208 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960209 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960209 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960223 Brazil) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960223 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960223 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960223 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960619 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960619 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960619 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960619 USA Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - shadow over mystara (960619 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940113 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940113 Euro) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940113 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940113 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940113 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940125 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940125 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940125 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940412 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940412 Euro Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940412 Euro) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940412 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons - tower of doom (940412 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + Dunk Dream '95 (Japan 1.4, EAM) + 1995 + Data East Corporation + + + + + + + + + + + + + Dunk Shot (FD1089 317-0022) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Dunk Shot (Rev A, FD1089 317-0022) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Dunk Shot (Rev C, FD1089 317-0022) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Dyger (Korea set 1) + 1989 + Philko + + + + + + + + + + + + + + + + + + + Dyger (Korea set 2) + 1989 + Philko + + + + + + + + + + + + + + + + + + + Dyna Gear + 1993 + Sammy + + + + + + + + + + + + + + + Dynablaster / Bomber Man + 1991 + Irem (licensed from Hudson Soft) + + + + + + + + + + + Dynamic Country Club (Japan, ROM Based) + 1991 + Sega + + + + + + + + + Dynamic Country Club (US, Floppy Based, FD1094 317-0058-09d) + 1991 + Sega + + + + + + + Dynamic Country Club (World, ROM Based) + 1991 + Sega + + + + + + + + + Dynamite Bomber (Korea, Rev 1.5) + 2000 + Limenko + + + + + + + + + + + + + Dynamite Duke (Europe, 03SEP89) + 1989 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Duke (Europe, 25JUL89) + 1989 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Duke (Japan, 03SEP89) + 1989 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Duke (Japan, 25JUL89) + 1989 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Duke (US, 25JUL89) + 1989 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Dux (bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Dux (set 1, World, 8751 317-0095) + 1989 + Sega + + + + + + + + + + + + + + + + + Dynamite Dux (set 2, FD1094 317-0096 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + Dynamite Dux (set 2, FD1094 317-0096) + 1989 + Sega + + + + + + + + + + + + + + + + + Dynamite Dux (set 2, Japan, FD1094 317-0094 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + Dynamite Dux (set 2, Japan, FD1094 317-0094) + 1989 + Sega + + + + + + + + + + + + + + + + + Dynamite League (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Dynamite League (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Dynasty Wars (US set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Dynasty Wars (US set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E Jong High School (Japan) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + E-Jan Sakurasou (Japan, SYS386F V1.2) + 1999 + Seibu Kaihatsu + + + + + + + + + + + + + E-Jan Sakurasou (Japan, SYS386F V2.0) + 1999 + Seibu Kaihatsu + + + + + + + + + + + + + E-Swat - Cyber Police (bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 1, Japan, FD1094 317-0131 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 1, Japan, FD1094 317-0131) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 2, Japan, FD1094 317-0128 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 2, Japan, FD1094 317-0128) + 1989 + Sega + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 3, US, FD1094 317-0129 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 3, US, FD1094 317-0129) + 1989 + Sega + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 4, World, FD1094 317-0130 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (set 4, World, FD1094 317-0130) + 1989 + Sega + + + + + + + + + + + + + + + + + + E.D.F. : Earth Defense Force (bootleg) [Bootleg, no sound] + 1991 + bootleg + + + + + + + + + + + + + + + + E.D.F. : Earth Defense Force (North America) + 1991 + Jaleco + + + + + + + + + + + + + + + E.D.F. : Earth Defense Force (set 1) + 1991 + Jaleco + + + + + + + + + + + + + + + E.D.F. : Earth Defense Force (set 2) + 1991 + Jaleco + + + + + + + + + + + + + + + Eagle (set 1) [Bootleg] + 1980 + Centuri + + + + + + + + + + + + + + + + Eagle (set 2) [Bootleg] + 1980 + Centuri + + + + + + + + + + + + + + + + Eagle (set 3) [Bootleg] + 1980 + Nichibutsu (Centuri license) + + + + + + + + + + + + + + + + Eagle Shot Golf (Japan, bootleg?) + 1994 + Sammy + + + + + + + + + + + + + Eagle Shot Golf (US) + 1994 + Sammy + + + + + + + + + + + + + Eco Fighters (931203 Asia) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Eco Fighters (931203 etc) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Eco Fighters (931203 Hispanic) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Eco Fighters (931203 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Eco Fighters (931203 World Phoenix Edition) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + Eco Fighters (940215 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Eeekk! + 1983 + Epos Corporation + + + + + + + + + + + + Eeekk! (Pac-man conversion) + 1984 + Epos Corporation + + + + + + + + + + + + Egg Hunt + 1995 + Invi Image + + + + + + + + + + + + + + Eggor + 1982 + Telko + + + + + + + + + + + + + + + + + + + Eggs + 1983 + [Technos] Universal USA + + + + + + + + + + + + + + + + Eight Ball Action (DK conversion) [Parent set for working drivers] + 1984 + Seatongrove Ltd (Magic Eletronics USA licence) + + + + + + + + + + + + + + + + + + + Eight Ball Action (Pac-Man conversion) [imperfect graphics] + 1985 + Seatongrove Ltd (Magic Eletronics USA license) + + + + + + + Eight Forces + 1994 + Tecmo + + + + + + + + + + + Eight Man (NGM-025)(NGH-025) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + El Fin Del Tiempo + 1981 + Niemer + + + + + + + + + + + + + + + + + + + + + + Elevator Action (BA3, 4 pcb version, 1.1) + 1983 + Taito Corporation + + + + + + + + + + + + + + + + Elevator Action (bootleg) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Elevator Action (EA, 5 pcb version, 1.1) + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Elevator Action II (Ver 2.2A 1995/02/20) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + Elevator Action Returns (Ver 2.2J 1995/02/20) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + Elevator Action Returns (Ver 2.2O 1995/02/20) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (2 Players, cocktail) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (2 Players, set 1) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (2 Players, set 2) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (4 Players) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (4 Players, prototype) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Emeraldia (Japan Version B) [Slight GFX Issues] + 1993 + Namco + + + + + + + + Emeraldia (Japan) [Slight GFX Issues] + 1993 + Namco + + + + + + + + Emeraldia (World) [Slight GFX Issues] + 1993 + Namco + + + + + + + + Empire City: 1931 (bootleg?) + 1986 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Empire City: 1931 (Italy) + 1986 + Seibu Kaihatsu (Eurobed license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Empire City: 1931 (Japan) + 1986 + Seibu Kaihatsu (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Empire City: 1931 (US) + 1986 + Seibu Kaihatsu (Taito / Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (bootleg of Rev A, YM2151, FD1089B 317-0013A set) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (bootleg of YM2203, FD1089B 317-0013A set) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (bootleg set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (Rev A, YM2151, FD1089B 317-0013A) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (Rev A, YM2151, mask ROM sprites, FD1089B 317-0013A) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (YM2151, FD1089B 317-0013A) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (YM2203, FD1089B 317-0013A) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enforce (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Enforce (Japan, Analog Controls) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Enforce (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Enma Daio (Japan) [Game unplayable.] + 1993 + Toaplan / Taito + + + + + + + + + + + + + + + + + + Escape from the Planet of the Robot Monsters (set 1) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Escape Kids (Asia, 4 Players) + 1991 + Konami + + + + + + + + + + + + + Escape Kids (Japan, 2 Players) + 1991 + Konami + + + + + + + + + + + + + ESP Ra.De. (Japan, ver. 98/04/14) + 1998 + Atlus / Cave + + + + + + + + + + + + + + + + ESP Ra.De. (Japan, ver. 98/04/21) + 1998 + Atlus / Cave + + + + + + + + + + + + + + + + ESP Ra.De. - A.D.2018 Tokyo (International, ver. 98/04/22) + 1998 + Atlus / Cave + + + + + + + + + + + + + + + + Espgaluda (2003/10/15 Master Ver, bootleg cartridge conversion) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + Espgaluda (Japan, 2003/10/15 Master Ver) + 2003 + CAVE / AMI + + + + + + + + + + + Espial (Europe) + 1983 + Orca / Thunderbolt + + + + + + + + + + + + + + + Espial (US?) + 1983 + Orca / Thunderbolt + + + + + + + + + + + + + + + Euro Champ '92 (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + Euro League (Italian hack of Tecmo World Cup '90 - alt version) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Euro League (Italian hack of Tecmo World Cup '90) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Evil Stone + 1990 + Spacy Industrial, Ltd. + + + + + + + + Excelsior (set 1) + 1996 + Playmark + + + + + + + + + + + + + + + + + + + Excelsior (set 2) + 1996 + Playmark + + + + + + + + + + + + + + + + + + + Excite League (FD1094 317-0079 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Excite League (FD1094 317-0079) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Exciting Hour + 1985 + Technos Japan (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Exed Exes + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Exerizer (Japan) + 1987 + Jaleco + + + + + + + + + + + + + + + + Exerizer (Japan) (bootleg) + 1987 + Jaleco + + + + + + + + + + + + + + + + Exodus (bootleg?) [Bootleg] + 19?? + Subelectro + + + + + + + + + + + + + Explorer (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Explorer [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Explosive Breaker (Korea) + 1992 + Kaneko + + + + + + + + + + + Explosive Breaker (World) + 1992 + Kaneko + + + + + + + + + + + Express Raider (Italy) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Express Raider (US, rev 5) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + Express Raider (World, Rev 4) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Extermination (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + Extermination (US, Romstar) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + Extermination (US, set 1) + 1987 + Taito (World Games license) + + + + + + + + + + + + + + + + + Extermination (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Exterminator + 1989 + Gottlieb / Premier Technology + + + + + + + + + + + + + + + + + + + + + + + + + Extreme Downhill (v1.5) + 1995 + Sammy Industries Japan + + + + + + + + + + Exvania (Japan) + 1992 + Namco + + + + + + + + + + + Exvania (World) + 1992 + Namco + + + + + + + + + + + Exzisus (Japan, conversion) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Exzisus (Japan, dedicated) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Exzisus (TAD license) + 1987 + Taito Corporation (TAD license) + + + + + + + + + + + + + + + + + + + + + + + Eyes (bootleg set 1) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + Eyes (bootleg set 2, decrypted) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Eyes (Digitrex Techstar) + 1982 + Digitrex Techstar (Rock-ola license) + + + + + + + + + + + + + Eyes (Techstar) + 1982 + Techstar (Rock-ola license) + + + + + + + + + + + + + F-1 Dream (bootleg, set 1) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + F-1 Dream (bootleg, set 2) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + F-1 Dream [Game is bugged, use the bootleg instead.] + 1988 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + F-1 Grand Prix (set 1) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + F-1 Grand Prix (set 2) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + F-1 Grand Prix Part II + 1992 + Video System Co. + + + + + + + + + + + + + + + + F-1 Grand Prix Star II + 1993 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + F-X (bootleg of S.R.D. Mission) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + F/A (Japan) + 1992 + Namco + + + + + + + + + + + + F1 Exhaust Note (Japan, Rev A) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + F1 Exhaust Note (US, Rev A) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + F1 Exhaust Note (World, Rev A) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + F1 Super Lap (Japan) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + F1 Super Lap (World) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + F1 Super Lap (World, Unprotected) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + Face Off (Japan 2 Players) + 1988 + Namco + + + + + + + + + + + + + + + + + + + Falcon (bootleg of Phoenix) (8085A CPU) + 1980 + bootleg (BGV Ltd.) + + + + + + + + + + + + + + + + + Falcon (bootleg of Phoenix) (Z80 CPU) + 1980 + bootleg + + + + + + + + + + + + + + + + + Fancy World - Earth of Crisis + 1996 + Unico + + + + + + + + + + + + + + Fantasia (940307 PCB) + 1994 + Comad / New Japan System + + + + + + + + + + + + + + + + + + + + Fantasia (940429 PCB, set 1) + 1994 + Comad / New Japan System + + + + + + + + + + + + + + + + + + + + Fantasia (940429 PCB, set 2) + 1994 + Comad / New Japan System + + + + + + + + + + + + + + + + + + + + Fantasia (940803 PCB) + 1994 + Comad / New Japan System + + + + + + + + + + + + + + + + Fantasia II (1998) + 1998 + Comad + + + + + + + + + + + + + + + + + Fantasia II (Explicit) + 1997 + Comad + + + + + + + + + + + + + + + + + Fantasia II (Less Explicit) + 1997 + Comad + + + + + + + + + + + + + + + + + Fantastic (Galaga conversion on Galaxian hardware) + 198? + Taito do Brasil + + + + + + + + + + + + + + Fantasy '95 + 1995 + Hi-max Technology Inc. + + + + + + + + + + + + + + + + Fantasy (Germany, set 1) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy (Germany, set 2) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy (Japan) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy (US) + 1981 + SNK (Rock-Ola license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy Land (set 1) + 19?? + Electronic Devices Italy + + + + + + + + + + + + + + + + + + + Fantasy Land (set 2) + 19?? + Electronic Devices Italy + + + + + + + + + + + + + + + + + + + Fantasy Zone (317-5000) + 1986 + Sega + + + + + + + + + + + + + + + + + + + Fantasy Zone (FD1089B 317-0016) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + Fantasy Zone (prototype) [Prototype] + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Fantasy Zone (Rev A, unprotected) + 1986 + Sega + + + + + + + + + + + + + + + + + + + Fantasy Zone (Time Attack, bootleg) + 2008 + Sega + + + + + + + + + + + + + Fantasy Zone (unprotected) + 1986 + Sega + + + + + + + + + + + + + + + + + + + Fantasy Zone II - The Tears of Opa-Opa (MC-8123, 317-0057) + 1988 + Sega + + + + + + + + + Fantasy Zone II - The Tears of Opa-Opa (System 16C) + 2008 + Sega / M2 + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy Zone II - The Tears of Opa-Opa (System 16C, prototype) + 2008 + Sega / M2 + + + + + + + + + + + + + + + + + + + + + + Fantasy Zone II - The Tears of Opa-Opa (System 16C, PS2 data file) + 2008 + Sega / M2 + + + + + + + + Fantasy Zone Time Attack (System 16B, PS2 data file) + 2008 + Sega + + + + + + + Fantazia (bootleg?) [Bootleg] + 1980 + bootleg (Subelectro) + + + + + + + + + + + + + + + + Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den + 1995 + Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den (Add hidden characters) [Hack] + 1995 + Ydmis / Creamymami[EGCG] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Farmers Rebellion + 1985 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + Fast Freddie + 1982 + Kaneko (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + Fast Lane + 1987 + Konami + + + + + + + + + Faster, Harder, More Challenging Q*bert (prototype) + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury - King of Fighters / Garou Densetsu - shukumei no tatakai (Boss Hack by Yumeji) [Hack] + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury - King of Fighters / Garou Densetsu - shukumei no tatakai (NGM-033)(NGH-033) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 2 / Garou Densetsu 2 - arata-naru tatakai (NGM-047) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 2 / Garou Densetsu 2 - arata-naru tatakai (NGM-047)(NGH-047) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - haruka-naru tatakai (Ancient Battles Resurgence 2015-03-13) [Hack] + 1995 + Yumeji + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - haruka-naru tatakai (NGM-069)(NGH-069) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - haruka-naru tatakai (NGM-069)(NGH-069) (alternate set) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury Special / Garou Densetsu Special (Optional Hidden Character Third Edition) [Hack] + 1993 + Yumeji + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury Special / Garou Densetsu Special (set 1)(NGM-058)(NGH-058) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury Special / Garou Densetsu Special (set 2)(NGM-058)(NGH-058) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fenix (bootleg of Phoenix) + 1980 + bootleg + + + + + + + + + + + + + + + + + Fenix (Niemer bootleg of Phoenix) + 1981 + bootleg (Niemer) + + + + + + + + + + + + + + + + + Fever SOS (International, ver. 98/09/25) + 1998 + Cave / Nihon System inc. + + + + + + + + + + + Fight Fever (set 1) + 1994 + Viccom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fight Fever (set 2) + 1994 + Viccom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighter & Attacker (US) + 1992 + Namco + + + + + + + + + + + + Fighter's History (Japan ver 41-04, DE-0380-1 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (Japan ver 41-05, DE-0380-2 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (Japan ver 41-07, DE-0395-1 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (US ver 42-03, DE-0380-2 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (US ver 42-05, DE-0395-1 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (US ver 42-06, DE-0395-1 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (US ver 42-09, DE-0396-0 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (World ver 43-05, DE-0380-2 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (World ver 43-07, DE-0380-2 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighter's History (World ver 43-09, DE-0395-1 PCB) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + Fighters Swords (Korean release of Samurai Shodown III) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Basketball + 1984 + Paradise Co. Ltd. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan revision 2) + 1989 + Data East Corpotation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan revision 3) + 1989 + Data East Corpotation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan revision ?) + 1989 + Data East Corpotation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan) + 1989 + Data East Corpotation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Hawk (Japan) + 1988 + Taito Corporation + + + + + + + + + Fighting Hawk (World) + 1988 + Taito Corporation Japan + + + + + + + + + Fighting Ice Hockey (DECO Cassette) (US) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Roller + 1983 + Kaneko (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Soccer (Japan) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + Fighting Soccer (Joystick hack bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + Fighting Soccer (Joystick hack bootleg, alt) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + Fighting Soccer (version 4) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + Final Blow (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + Final Blow (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + Final Blow (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + Final Crash (bootleg (with 2xYM2203 + 2xMSM5205)) [Bootleg] + 1990 + Playmark + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (900112 Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (900112 USA) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight (900305 Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (900405 Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (900424 USA) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight (900613 Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (900613 USA) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight (bootleg set 1 (with 2xYM2203 + 2xMSM5205), World) [Bootleg] + 1990 + bootleg + + + + + + + + + + Final Fight (bootleg set 2 (with 2xYM2203 + 2xMSM5205), World)) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (USA, set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight (USA, set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (USA, set 3) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (World, set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight (World, set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Final Fight 30th Anniversary Edition [Hack] + 2019 + hack + + + + + + + + + + + + + + + + + + + Final Godori (Korea, version 2.20.5915) + 2001 + SemiCom + + + + + + + Final Star Force (Japan) + 1992 + Tecmo + + + + + + + + + + + + Final Star Force (US) + 1992 + Tecmo + + + + + + + + + + + + Final Star Force (World?) + 1992 + Tecmo + + + + + + + + + + + + Final Tetris + 1993 + Jeil Computer System + + + + + + + + + + + + + Finalizer - Super Transformation (bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + Finalizer - Super Transformation (set 1) + 1985 + Konami + + + + + + + + + + + + + + + + + Finalizer - Super Transformation (set 2) + 1985 + Konami + + + + + + + + + + + + + + + + + Finest Hour (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fire Ball (FM Work) [Black Bar on the left side is normal.] + 1992 + FM Work + + + + + + + + + + + + + + + Fire Barrel (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Fire Battle + 1984 + Wood Place Inc. (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fire Hawk (World) / Huohu Chuanshuo (China) (horizontal) + 2001 + ESD + + + + + + + + + + + Fire Shark + 1990 + Toaplan + + + + + + + + + + + + + + + + + + Fire Shark (earlier) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Fire Shark (Korea, set 1, easier) + 1990 + Toaplan (Dooyong license) + + + + + + + + + + + + + + + + + + Fire Shark (Korea, set 2, harder) + 1990 + Toaplan (Dooyong license) + + + + + + + + + + + + + + + + + + Fire Trap (Japan bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Fire Trap (Japan) + 1986 + Wood Place Inc. + + + + + + + + + + + + + + + + + + + + + + + + + Fire Trap (US) + 1986 + Wood Place Inc. (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + Fire Trap (US, rev A) + 1986 + Wood Place Inc. (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + Firebeast (prototype) [Prototype] + 1983 + Atari + + + + + + + + + + + + + + + + Fishing (DECO Cassette) (Japan) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fitter + 1981 + Taito Corporation + + + + + + + + + + + + + Fitter (bootleg of Round-Up) + 1981 + bootleg + + + + + + + + + + + + + FixEight (Europe) + 1992 + Toaplan + + + + + + + + FixEight (Europe, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (Hong Kong) + 1992 + Toaplan + + + + + + + + FixEight (Hong Kong, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (Japan) + 1992 + Toaplan + + + + + + + + FixEight (Japan, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (Korea) + 1992 + Toaplan + + + + + + + + FixEight (Korea, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (Southeast Asia) + 1992 + Toaplan + + + + + + + + FixEight (Southeast Asia, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (Taiwan) + 1992 + Toaplan + + + + + + + + FixEight (Taiwan, Taito license) + 1992 + Toaplan + + + + + + + + FixEight (USA) + 1992 + Toaplan + + + + + + + + FixEight (USA, Taito license) + 1992 + Toaplan + + + + + + + + Flak Attack (Japan) + 1987 + Konami + + + + + + + Flak Attack (Japan, PWB 450593 sub-board) + 1987 + Konami + + + + + + + + + + + + + + Flash Boy (vertical) [DECO Cassette MD] (No.12/Ver.0/Set.1,Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flash Point (Japan, bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + Flash Point (set 1, Japan, FD1094 317-0127A decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + Flash Point (set 1, Japan, FD1094 317-0127A) + 1989 + Sega + + + + + + + + + + + + + Flash Point (set 2, Japan, FD1094 317-0127A decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + Flash Point (set 2, Japan, FD1094 317-0127A) + 1989 + Sega + + + + + + + + + + + + Flash Point (World, bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + Flashgal (set 1) + 1985 + Kyugo / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flashgal (set 1, Kyugo logo) + 1985 + Kyugo / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flashgal (set 2) + 1985 + Kyugo / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flicky (128k Version, 315-5051) + 1984 + Sega + + + + + + + + + + + + + + + Flicky (128k Version, 315-5051, larger roms)) + 1984 + Sega + + + + + + + + + + + + Flicky (128k Version, not encrypted) + 1984 + Sega + + + + + + + + + + + + + + + Flicky (128k Version, System 2, 315-5051, alt graphics) + 1984 + Sega + + + + + + + + + + + + Flicky (128k Version, System 2, not encrypted, alt graphics) + 1984 + Sega + + + + + + + + + + + + Flicky (64k Version, 315-5051, set 1) + 1984 + Sega + + + + + + + + + + + + + + + + + Flicky (64k Version, 315-5051, set 2) + 1984 + Sega + + + + + + + + + + + + + + + + + Flicky (64k Version, on Up'n Down boardset) + 1984 + Sega + + + + + + + + + + + + + + + + + Flipper Jack + 1983 + Jackson Co., Ltd. + + + + + + + + + + + + + Flipull (Japan) + 1989 + Taito Corporation + + + + + + + Flower (Japan) + 1986 + Clarue (Sega / Alpha Denshi Co. license) + + + + + + + + + + + + + + + + + + + + + + + + Flower (US) + 1986 + Clarue (Komax license) + + + + + + + + + + + + + + + + + + + + + + + + Fly-Boy + 1982 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + Fly-Boy (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Flyin' Shark (bootleg of Hishou Zame) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flying Ball (DECO Cassette) (US) + 1985 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Flying Shark (bootleg with 8741) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flying Shark (World) + 1987 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Flying Tiger (set 1) + 1992 + Dooyong + + + + + + + + + + + + + Flying Tiger (set 2) + 1992 + Dooyong + + + + + + + + + + + + + + + + + + + Food Fight (cocktail) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + + Food Fight (rev 1) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + + Food Fight (rev 2) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + + Food Fight (rev 3) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + + Football Champ (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + Football Frenzy (NGM-034)(NGH-034) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Force Break (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + Forgotten Worlds (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US, B-Board 88618B-2, rev A) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US, B-Board 88618B-2, rev AA) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US, B-Board 88618B-2, Rev C) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US, B-Board 88618B-2, Rev E) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US, B-Board 88621B-2, rev C) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (World) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (World, newer) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Formation Z + 1984 + Jaleco + + + + + + + + + + + + + + + Fortress 2 Blue Arcade (Korea) (ver 1.00 / pcb ver 3.05) + 2001 + Eolith + + + + + + + + + + + + + + + + + Fortress 2 Blue Arcade (World) (ver 1.01 / pcb ver 3.05) + 2001 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Free Kick (bootleg set 1) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + Free Kick (bootleg set 3) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + Free Kick (NS6201-A 1987.10) + 1987 + Nihon System (Merit license) + + + + + + + + + + + + + + + + + Free Kick (NS6201-A 1987.9) + 1987 + Nihon System + + + + + + + + + + + + + + + + + Freeze + 1984 + Cinematronics + + + + + + + + + + + + + + + + Frenzy (revision RA1) + 1981 + Stern Electronics + + + + + + + + + + + Frisky Tom (set 1) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + Frisky Tom (set 2) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + Frisky Tom (set 3, encrypted) [Broken, please use parent romset!] + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + Frog & Spiders (bootleg?) + 1981 + Taito Corporation + + + + + + + + + + + + + + + Frog (Falcon bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + Frog (Galaxian hardware) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + Frog [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + Frog Feast (CPS-1) [Homebrew] + 2006 + Rastersoft (Homebrew) + + + + + + + + + + + + + + + Frog Feast (Neo Geo) [Homebrew] + 2006 + Rastersoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Frog Feast (PGM) [Homebrew] + 2006 + RasterSoft + + + + + + + + + + + + + + Frogger + 1981 + Konami + + + + + + + + + + + + Frogger (Moon Cresta hardware) [No Sound] + 1981 + Konami (Sega license) + + + + + + + + + + + + Frogger (Scramble hardware) [Bootleg] + 1981 + Coin Music + + + + + + + + + + + + Frogger (Sega set 1) + 1981 + Konami (Sega license) + + + + + + + + + + + + Frogger (Sega set 2) + 1981 + Konami (Sega license) + + + + + + + + + + + + + Frogger (Sega set 3) + 1981 + Konami (Sega license) + + + + + + + + + + + + Front Line (set 1) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + Front Line (set 2) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Fujiyama Buster (Japan) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + Full Throttle (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Funky Bee + 1982 + Orca + + + + + + + + + + Funky Bee (bootleg, harder) + 1982 + bootleg + + + + + + + + + + Funky Fish + 1981 + Sun Electronics + + + + + + + + + + + + Funky Jet (Japan, rev 2) + 1992 + Mitchell (Data East Corporation license) + + + + + + + + + + Funky Jet (Korea, prototype?) + 1992 + Mitchell + + + + + + + + + + Funky Jet (World) + 1992 + Mitchell + + + + + + + + + + Funky Jet (World, rev 1) + 1992 + Mitchell + + + + + + + + + + Funny Bubble + 1999 + In Chang Electronic Co + + + + + + + + + + + + + + + + + + + Funny Bubble (Comad version) + 1999 + Comad Industry Co Ltd + + + + + + + + + + + + + + + + + + + Funny Mouse (Japan) + 1982 + Taito Corporation (Chuo Co. Ltd license) + + + + + + + + + + + + + + Future Spy + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G-LOC Air Battle (US) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G-LOC Air Battle (World) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G-LOC R360 (Japan) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G-LOC R360 (World) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + G-Stream G2020 + 2002 + Oriental Soft Japan + + + + + + + + + + + + + + + + + + + + + + + + G.I. Joe (Asia, AA) + 1992 + Konami + + + + + + + + + + + + + + + + G.I. Joe (Japan, JAA) + 1992 + Konami + + + + + + + + + + + + + + + + G.I. Joe (US, UAA) + 1992 + Konami + + + + + + + + + + + + + + + + G.I. Joe (US, UAB) + 1992 + Konami + + + + + + + + + + + + + + + + G.I. Joe (World, EAB, set 1) + 1992 + Konami + + + + + + + + + + + + + + + + G.I. Joe (World, EB8, prototype?) + 1992 + Konami + + + + + + + + + + + + + + + + Gaia - The Last Choice of Earth + 1999 + SemiCom / XESS + + + + + + + + + + + + + + + + Gaia Crusaders + 1999 + Noise Factory + + + + + + + + + + + + + Gaiapolis (ver EAF) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Gaiapolis (ver JAF) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Gaiapolis (ver UAF) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Gain Ground (Japan, 2 Players, Floppy Based, FD1094 317-0058-03b) + 1988 + Sega + + + + + + + Gain Ground (World, 3 Players, Floppy Based, FD1094 317-0058-03d Rev A) + 1988 + Sega + + + + + + + Galactic Storm (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Galactic Warriors + 1985 + Konami + + + + + + + + + + Galaga '88 + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga '88 (02-03-88) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga '88 (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga (Midway set 1 with fast shoot hack) + 1981 + Namco (Midway License) + + + + + + + + + + + + + + + + + + + Galaga (Midway set 1) + 1981 + Namco (Midway License) + + + + + + + + + + + + + + + + + + + Galaga (Midway set 2) + 1981 + Namco (Midway License) + + + + + + + + + + + + + + + + + + + Galaga (Namco rev. B) + 1981 + Namco + + + + + + + + + + + + + + + + + + + Galaga (Namco) + 1981 + Namco + + + + + + + + + + + + + + + + + + + Galaga 3 (GP3 rev. C) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (GP3 rev. D) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (GP3) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (set 4) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (set 5) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + Galaga Demo (set 1) [Homebrew] + 2013 + Cristiano Bei/www.iocerom.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga Demo (set 2) [Homebrew] + 2013 + Cristiano Bei/www.iocerom.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaktron (Petaco S.A.) + 1979 + bootleg (Petaco S.A.) + + + + + + + + + + + Galaxian (bootleg, set 1) [Bootleg] + 1979 + bootleg + + + + + + + + + + + + + + + + Galaxian (bootleg, set 2) [Bootleg] + 1979 + bootleg + + + + + + + + + + + + + + + + Galaxian (bootleg, set 3) [Bootleg] + 1979 + bootleg + + + + + + + + + + + + + + + + + Galaxian (bootleg, set 4) [Bootleg] + 1979 + bootleg + + + + + + + + + + + Galaxian (Cirsa Spanish bootleg) + 1979 + bootleg (Cirsa) + + + + + + + + + + + Galaxian (Electromar Spanish bootleg) + 1980 + bootleg (Electromar) + + + + + + + + + + + Galaxian (Irem) + 1979 + bootleg? (Irem) + + + + + + + + + + + Galaxian (Midway set 1) + 1979 + Namco (Midway license) + + + + + + + + + + + Galaxian (Midway set 2) + 1979 + Namco (Midway license) + + + + + + + + + + + Galaxian (Namco set 1) + 1979 + Namco + + + + + + + + + + + Galaxian (Namco set 2) + 1979 + Namco + + + + + + + + + Galaxian (Recreativos Franco S.A. Spanish bootleg) + 1980 + bootleg (Recreativos Franco S.A.) + + + + + + + + + + + Galaxian (Rene Pierre bootleg) + 1979 + bootleg (Valadon Automation / Rene Pierre) + + + + + + + + + + + Galaxian (Spanish bootleg) [Bootleg] + 1979 + bootleg + + + + + + + + + + + Galaxian (Taito) + 1979 + Namco (Taito license) + + + + + + + + + + + Galaxian Growing Galaxip / Galaxian Nave Creciente (Recreativos Covadonga Spanish bootleg) + 1980 + bootleg (Recreativos Covadonga) + + + + + + + + + Galaxian Growing Galaxip / Galaxian Nave Creciente (Recreativos Franco S.A. Spanish bootleg) + 1980 + bootleg (Recreativos Franco S.A.) + + + + + + + + + Galaxian Part 4 (hack) [Hack] + 1979 + G.G.I + + + + + + + + + + + Galaxian Part X (moonaln hack) [Hack] + 1979 + hack + + + + + + + + + + + Galaxian Test ROM [Prototype] + 1979 + Test ROM + + + + + + + + + + + Galaxian Turbo (superg hack) [Hack] + 1979 + hack + + + + + + + + + + + Galaxy Empire (bootleg?) [Bootleg] + 1980 + bootleg (Taito do Brasil) + + + + + + + + + + + + + + + + Galaxy Fight - Universal Warriors + 1995 + Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Force 2 + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Force 2 (Japan) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Force 2 (Japan, Rev A) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Force 2 (Super Deluxe unit) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Gunners [No Sound.] + 1989 + Electronic Devices Italy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Wars II (Defender bootleg) [Bootleg] + 1981 + bootleg (Sonic) + + + + + + + + + + + + + + + + Galaxy X (bootleg of Galaxian) + 1979 + bootleg + + + + + + + + + + + Gallag [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Gallop - Armed police Unit (Japan, M72 hardware) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + Galmedes (Japan) + 1992 + Visco + + + + + + + + + + + Gals Hustler + 1997 + ACE International + + + + + + + + Gals Panic (Unprotected) + 1990 + Kaneko + + + + + + + + + + + + + + + + Gals Panic 3 (Euro) + 1995 + Kaneko + + + + + + + + + + + + + + + Gals Panic 3 (Hong Kong) + 1995 + Kaneko + + + + + + + + + + + + + + + Gals Panic 3 (Japan) + 1995 + Kaneko + + + + + + + + + + + + + + + Gals Panic 3 (Korea) + 1995 + Kaneko + + + + + + + + + + + + + + + Gals Panic 4 (Europe) [No sound. Use a clone, instead!] + 1996 + Kaneko + + + + + + + + + + + + + + + + + Gals Panic 4 (Japan) + 1996 + Kaneko + + + + + + + + + + + + + + + Gals Panic 4 (Korea) + 1996 + Kaneko + + + + + + + + + + + + + + + + Gals Panic DX (Asia) + 2001 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S - Extra Edition (Asia) + 1997 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S - Extra Edition (Europe, set 1) + 1997 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S - Extra Edition (Europe, set 2) + 1997 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S - Extra Edition (Japan) + 1997 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S - Extra Edition (Korea) + 1997 + Kaneko + + + + + + + + + + + + + + + + Gals Panic S2 (Asia) + 1999 + Kaneko + + + + + + + + + + + + + + + + + + Gals Panic S2 (Europe) + 1999 + Kaneko + + + + + + + + + + + + + + + + + + Gals Panic S2 (Japan) + 1999 + Kaneko + + + + + + + + + + + + + + + + + + Gals Panic S3 (Japan) + 2002 + Kaneko + + + + + + + + + + + + + Gals Panic SU (Korea) + 1999 + Kaneko + + + + + + + + + + + + + + + + + + + Gals Pinball + 1996 + Comad + + + + + + + + + + + + + + + + + Games V18.2 + 1989 + U.S. Games + + + + + + + + Games V18.5 + 1990 + U.S. Games + + + + + + + + Games V18.7C + 1991 + U.S. Games + + + + + + + + Games V25.4X + 1992 + U.S. Games + + + + + + + + Ganbare Ginkun + 1995 + Tecmo + + + + + + + + + + + + Ganbare! Gonta!! 2 / Party Time: Gonta the Diver II (Japan Release) + 1995 + Mitchell + + + + + + + + + + + + Ganbare! Marine Kun (Marine 2K0411 JPN) + 2000 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Gang Busters (set 1) + 1988 + Konami + + + + + + + + + + + + Gang Busters (set 2) + 1988 + Konami + + + + + + + + + + + + Gang Hunter / Dead Angle + 1988 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + Gang Hunter / Dead Angle (Spain) + 1988 + Seibu Kaihatsu (SegaSA / Sonic license) + + + + + + + + + + + + + + + + + + + + + + + + Gang Wars + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + Gang Wars (bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gang Wars (Japan) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + Gang Wars (US) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + Ganryu / Musashi Ganryuki + 1999 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (GP2 rev D, alternate hardware) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (GP2 rev. B) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (GP2) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (Tecfri PCB) [Bootleg] + 1992 + bootleg (Tecfri) + + + + + + + + + + + + + + + + + + + + + + + + Gardia (317-0006) + 1986 + Coreland / Sega + + + + + + + + + + + + + + + + + + Garogun Seroyang (Korea) + 2000 + Yun Sung + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (bootleg) [Bootleg] + 1999 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (Enable hidden characters) [Hack] + 1999 + Ydmis + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (NGH-2530) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (NGM-2530) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (NGM-2530) (NGH-2530) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (prototype) [Prototype] + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garuka (Japan ver. W) [Minor Video glitches in level 2.] + 1988 + Konami + + + + + + + + + + + + + Garyo Retsuden (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Gate of Doom (US revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Gate of Doom (US revision 4) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Gauntlet (2 Players, German, rev 1) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players, German, rev 4) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players, Japanese rev 2) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players, Japanese, rev 5) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players, rev 3) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players, rev 6) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (German, rev 10) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (German, rev 3) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (German, rev 6) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (German, rev 8) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (Japanese, rev 12) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (Japanese, rev 13) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 1) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 14) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 2) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 4) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 5) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 7) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (rev 9) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (Spanish, rev 15) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II (2 Players, German) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II (2 Players, rev 1) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II (2 Players, rev 2) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II (German) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gee Bee (Europe) + 1978 + Namco (F.lli Bertolino license) + + + + + + + + Gee Bee (Japan) + 1978 + Namco + + + + + Gee Bee (UK) + 1978 + Namco (Alca license) + + + + + + + + Gee Bee (US) + 1978 + Namco (Gremlin license) + + + + + Gekirindan (Ver 2.3J 1995/09/21) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + Gekirindan (Ver 2.3O 1995/09/21) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + Gemini Wing (Japan) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + Gemini Wing (World) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + Gemini Wing (World, bootleg) [Bootleg] + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + Genix Family + 1994 + NIX + + + + + + + + + + + + + + Genpei ToumaDen + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Genshi-Tou 1930's (Japan) + 1989 + SNK + + + + + + + + + + + + + Geostorm (Japan) + 1994 + Irem + + + + + + + + + + + + + + + + + + Get Star (bootleg set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Get Star (bootleg set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + Get Star (Japan) + 1986 + Toaplan / Taito + + + + + + + + + + + + + + + + + + + + + Ghost Busters (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghost Muncher [Bootleg] + 1981 + Leisure and Allied + + + + + + + + + + + + Ghost Pilots (NGH-020)(US) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghost Pilots (NGM-020)(NGH-020) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghost Pilots (prototype) [Prototype] + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghostlop (prototype) [Prototype] + 1996 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghostmuncher Galaxian (bootleg) [Bootleg] + 1981 + LAX + + + + + + + + + + + + + + + + Ghosts'n Goblins (bootleg with Cross) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (bootleg, harder) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (Italian bootleg, harder) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (prototype) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (US) + 1985 + Capcom (Taito America License) + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (World Revision C) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (World? set 1) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (World? set 2) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Ghouls'n Ghosts (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghouls'n Ghosts (World) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghox (joystick) + 1991 + Toaplan + + + + + + + + Ghox (joystick, older) + 1991 + Toaplan + + + + + + + + Ghox (spinner) + 1991 + Toaplan + + + + + + + + Giga Wing (990222 Asia) + 1999 + Takumi (Capcom license) + + + + + + + + + + + + + + Giga Wing (990222 Brazil) + 1999 + Takumi (Capcom license) + + + + + + + + + + + + + + Giga Wing (990222 Hispanic) + 1999 + Takumi (Capcom license) + + + + + + + + + + + + + + Giga Wing (990222 USA Phoenix Edition) [Bootleg] + 1999 + bootleg + + + + + + + + + + + + + + Giga Wing (990222 USA) + 1999 + Takumi (Capcom license) + + + + + + + + + + + + + + Giga Wing (990223 Japan Phoenix Edition) [Bootleg] + 1999 + bootleg + + + + + + + + + + + + + + Giga Wing (990223 Japan) + 1999 + Takumi (Capcom license) + + + + + + + + + + + + + + Gigaman 2: The Power Fighters (bootleg) [Bootleg, No Sound (MCU not dumped)] + 1996 + bootleg + + + + + + + + Gigandes + 1989 + East Technology + + + + + + + + + + + + + + Gigandes (earlier) + 1989 + East Technology + + + + + + + + + + + + + + Gigas (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + Gigas (MC-8123, 317-5002) + 1986 + SEGA + + + + + + + + + + + + + + + + + + Gigas Mark II + 1986 + bootleg + + + + + + + + + + + + + + + + + + Gigas Mark II (MC-8123, 317-5002) + 1986 + SEGA + + + + + + + + + + + + + + + + + + Ginga NinkyouDen (set 1) + 1987 + Jaleco + + + + + + + + + + + + + + + + + + Ginga NinkyouDen (set 2) + 1987 + Jaleco + + + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu + 1980 + Irem + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu (bootleg set 1) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu (bootleg set 2) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Gladiator (US) + 1986 + Allumer / Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Gladiator 1984 + 1984 + SNK + + + + + + + + + + + + + + + + + + Glass (Ver 1.0, Break Edition) (set 1) + 1993 + OMK / Gaelco + + + + + + + + + + Glass (Ver 1.0, Break Edition) (set 2) + 1993 + OMK / Gaelco + + + + + + + + + + Glass (Ver 1.1, Break Edition, Version 1994) + 1994 + OMK / Gaelco + + + + + + + + + + Glass (Ver 1.1, Break Edition, Version 1994) (censored, unprotected) + 1994 + OMK / Gaelco (Promat license) + + + + + + + + + Global Champion (Ver 2.1A 1994/07/29) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Go 2000 + 2000 + SunA? + + + + + + + + Go For The Gold (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + Go Go Mr. Yamaguchi / Yuke Yuke Yamaguchi-kun + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + Goal! Goal! Goal! + 1995 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Godzilla (Japan) + 1993 + Banpresto + + + + + + + + + + + + + + + + + + + Goindol (Japan) + 1987 + SunA + + + + + + + + + + + + + + + + Goindol (US) + 1987 + SunA + + + + + + + + + + + + + + + + Goindol (World) + 1987 + SunA + + + + + + + + + + + + + + + + Gold Medalist (bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + Gold Medalist (set 1) + 1988 + SNK + + + + + + + + + + + + + + + + + + Gold Medalist (set 2) + 1988 + SNK + + + + + + + + + + + + + + + + + + + Golden Axe (set 1, World, FD1094 317-0110 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + Golden Axe (set 1, World, FD1094 317-0110) + 1989 + Sega + + + + + + + + + + + + + + + + + + Golden Axe (set 2, US, 8751 317-0112) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (set 3, World, FD1094 317-0120 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + Golden Axe (set 3, World, FD1094 317-0120) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (set 4, Japan, FD1094 317-0121 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + Golden Axe (set 4, Japan, FD1094 317-0121) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (set 5, US, FD1094 317-0122 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + Golden Axe (set 5, US, FD1094 317-0122) + 1989 + Sega + + + + + + + + + + + + + + + + + + Golden Axe (set 6, US, 8751 317-123A) + 1989 + Sega + + + + + + + + + + + + + + + + + + Golden Axe: The Revenge of Death Adder (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + Golden Axe: The Revenge of Death Adder (US, Rev A) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + Golden Axe: The Revenge of Death Adder (World, Rev B) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + Golden Fire II + 1992 + Topis Corp + + + + + + + + + + + + Golden Tee '97 (v1.20) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 (v1.21) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 (v1.21S) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 (v1.22) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 (v1.30) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 Tournament (v2.40) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '97 Tournament (v2.43) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '98 (v1.00) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '98 (v1.00S) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '98 (v1.10) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '98 Tournament (v3.02) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '98 Tournament (v3.03) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '99 (v1.00) + 1999 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '99 (v1.00S) + 1999 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee '99 Tournament (v4.00) + 1999 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 2K (v1.00) + 2000 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 2K (v1.00) (alt protection) + 2000 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 2K (v1.00S) + 2000 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 2K Tournament (v5.00) + 2000 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.4) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.5) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.6) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.7) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.8) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.91L) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.92L) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.92S) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.93N) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf (v1.9L) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf Tournament (v2.11) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + Golden Tee 3D Golf Tournament (v2.31) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Classic (v1.00) + 2001 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Classic (v1.00) (alt protection) + 2001 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Classic (v1.00S) + 2001 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Diamond Edition Tournament (v3.05T ELC) + 1998 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Royal Edition Tournament (v4.02T EDM) + 1999 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golden Tee Supreme Edition Tournament (v5.10T ELC S) + 2002 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Golly! Ghost! + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + Gonbee no I'm Sorry (315-5110, Japan) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + Gondomania (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + Gondomania (World) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + Gongtit Jiucoi Iron Fortress (Hong Kong) + 1998 + Eolith (Excellent Competence Ltd. license) + + + + + + + + + + + + + Goori Goori + 1999 + Unico + + + + + + + + + + Gorkans + 1983 + Techstar + + + + + + + + + + + + + + + + + + + Got-cha Mini Game Festival + 1997 + Dongsung + + + + + + + + + + + + + + + Gouketsuji Gaiden Legends (USA, ver. 95/06/20) + 1995 + Atlus / KM International + + + + + + + + + + + + + + + + + + + + + + + + + + Gouketsuji Gaiden Saikyou Densetsu (Japan, ver. 95/06/20) + 1995 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + + Gouketsuji Ichizoku (Japan) + 1993 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + Gouketsuji Ichizoku (Japan, prototype) [Prototype] + 1993 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gouketsuji Ichizoku 2 (Japan, ver. 94/04/08) + 1994 + Atlus + + + + + + + + + + + + + + + + + + + + + + + Gourmet Battle Quiz Ryohrioh CooKing (Japan) + 1998 + Visco + + + + + + + + + + + + + + + GP Rider (Japan, FD1094 317-0161) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP Rider (Japan, FD1094 317-0161) (Twin setup) [Single version only] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP Rider (US, FD1094 317-0162) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP Rider (US, FD1094 317-0162) (Twin setup) [Single version only] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP Rider (World, FD1094 317-0163) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP Rider (World, FD1094 317-0163) (Twin setup) [Single version only] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius (Bubble System) + 1985 + Konami + + + + + + + + + + + + + + Gradius (Japan, ROM version) + 1985 + Konami + + + + + + + + + + Gradius II - GOFER no Yabou (Japan New ver.) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Gradius II - GOFER no Yabou (Japan Old ver.) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Gradius II - GOFER no Yabou (Japan Older ver.) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Gradius III (Asia) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (Japan, program code S) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (Japan, program code S, split) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (World, program code R) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Prix Star (ver 2.0) + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Prix Star (ver 3.0) + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Prix Star (ver 4.0) + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Striker 2 (Europe and Oceania) [ROZ layer broken] + 1996 + Human Amusement + + + + + + + + + + + + + + + + + + + Grand Tour + 1993 + IGS + + + + + + + + + + Graplop (no title screen) (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grasspin + 1983 + [Zilec Electronics] Jaleco + + + + + + + + + + + + + + + Gratia - Second Earth (ver 1.0, 91022-10 version) + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + Gratia - Second Earth (ver 1.0, 92047-01 version) + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + Gravitar (version 1) + 1982 + Atari + + + + + + + + + + + + + + + + Gravitar (version 2) + 1982 + Atari + + + + + + + + + + + + + + + + Gravitar (version 3) + 1982 + Atari + + + + + + + + + + + + + + + + Great 1000 Miles Rally 2 USA (95/05/18) + 1995 + Kaneko + + + + + + + + + + + + + + + + + Great 1000 Miles Rally: Evolution Model!!! (94/09/06) + 1994 + Kaneko + + + + + + + + + + + + + + + Great 1000 Miles Rally: U.S.A Version! (94/09/06) + 1994 + Kaneko + + + + + + + + + + + + + + + Great Mahou Daisakusen (000121 Japan) + 2000 + 8ing / Raizing / Capcom + + + + + + + + + + + + + + + + Great Sluggers '94 + 1994 + Namco + + + + + + + + + + + + + + + Great Sluggers '94 (Japan) + 1994 + Namco + + + + + + + + + + + + + + + + + Great Sluggers (Japan) + 1993 + Namco + + + + + + + + + + + + + + + Green Beret + 1985 + Konami + + + + + + + + + + + + + + Green Beret (bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + Grid Seeker: Project Storm Hammer (Ver 1.3A) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + Grid Seeker: Project Storm Hammer (Ver 1.3J) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + Grid Seeker: Project Storm Hammer (Ver 1.3O) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Griffon (bootleg of Phoenix) + 1980 + bootleg (Videotron) + + + + + + + + + + + + + + + + Grind Stormer + 1992 + Toaplan + + + + + + Grind Stormer (older set) + 1992 + Toaplan GP9001 based + + + + + + Grobda (New Ver.) + 1984 + Namco + + + + + + + + + + + + + + Grobda (Old Ver. set 1) + 1984 + Namco + + + + + + + + + + + + + + Grobda (Old Ver. set 2) + 1984 + Namco + + + + + + + + + + + + + + Ground Effects / Super Ground Effects (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Growl (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + Growl (World) + 1990 + Taito America Japan + + + + + + + + + + + + + Growl (World, Rev 1) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + Gryzor (Set 1) + 1987 + Konami + + + + + + + + + + + + + + + Gryzor (Set 2) + 1987 + Konami + + + + + + + + + + + + + + + Guardian (US) + 1986 + Toaplan / Taito America Corporation (Kitkorp license) + + + + + + + + + + + + + + + + + + + + + Guardian Storm (Germany) + 1998 + Afega + + + + + + + + + + + + + + + + Guardian Storm (horizontal, Australia) + 1998 + Afega + + + + + + + + + + + + + + + + Guardian Storm (horizontal, not encrypted) + 1998 + Afega (Apples Industries license) + + + + + + + + + + + Guardian Storm (vertical) + 1998 + Afega (Apples Industries license) + + + + + + + + + + + Guardians (Field Edition, Hack) [Hack] + 2021-04-12 + Hack + + + + + + + + + + + + + + + + Guardians (Kerron Edition, Hack) [Hack] + 2021-04-12 + Hack + + + + + + + + + + + + + + + + Guardians (LBS Edition, Hack) [Hack] + 2021-04-04 + Hack + + + + + + + + + + + + + + + + Guardians (Shen Yue Edition, Hack) [Hack] + 2021-04-02 + Hack + + + + + + + + + + + + + + + + Guardians + 1995 + Banpresto + + + + + + + + + + + + + + + + Guerrilla War (Joystick hack bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (Version 1) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (Version 1, set 2) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guevara (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gulf Storm (Korea) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + + + Gulf Storm (Media Shoji) + 1991 + Dooyong (Media Shoji license) + + + + + + + + + + + + + + + + + + + + Gulf Storm (set 1) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + + + Gulf Storm (set 2) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + + + Gulf Storm (set 3) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + + + Gulf War II (set 1) + 1991 + Comad + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gulf War II (set 2) + 1991 + Comad + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gulun.Pa! (Japan 931220 L) + 1993 + Capcom + + + + + + + + + + + + Gumbo + 1994 + Min Corp. + + + + + + + + + + Gun & Frontier (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + Gun Ball (Japan) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Gun Bullet (Japan, GN1) + 1994 + Namco + + + + + + + + + + + + + + + + + + Gun Bullet (World, GN3 Rev B) + 1994 + Namco + + + + + + + + + + + + + + + + + + Gun Dealer '94 + 1994 + Dooyong + + + + + + + + + + + + + + Gun Frontier (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + Gun Gabacho (Japan) + 1998 + Gaelco + + + + + + + + + + + + + + + + + + + + Gun Hohki (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + Gun Master + 1994 + Metro + + + + + + + + + + + Gun.Smoke (Germany, censored) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (Japan, 851115) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (US, 851115, set 1) + 1986 + Capcom (Romstar License) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (US, 851115, set 2) + 1986 + Capcom (Romstar License) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (US, 860408) + 1985 + Capcom (Romstar License) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (World, 851115) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (World, 851115) (bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gunbarich + 2001 + Psikyo + + + + + + + + + + + + + + + Gunbird (Japan) + 1994 + Psikyo + + + + + + + + + + + + + + Gunbird (Korea) + 1994 + Psikyo + + + + + + + + + + + + + + Gunbird (World) + 1994 + Psikyo + + + + + + + + + + + + + + + + Gunbird 2 (set 1) + 1998 + Psikyo + + + + + + + + + + + + + + + + Gunbird 2 (set 2) + 1998 + Psikyo + + + + + + + + + + + + + + + + Gunbuster (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Gunbuster (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Gunbuster (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Gundhara + 1995 + Banpresto + + + + + + + + + + + + + + + + Gundhara (Chinese, bootleg?) + 1995 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (US) + 1991 + Irem America + + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + Gunforce 2 (US) + 1994 + Irem + + + + + + + + + + + + + + + + + + Gunlock (Ver 2.3O 1994/01/20) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + GunNail (28th May. 1992) + 1993 + NMK / Tecmo + + + + + + + + + + + + + + + GunNail (location test) + 1992 + NMK + + + + + + + + + + + + + + Gururin + 1994 + Face + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gussun Oyoyo (Japan) + 1993 + Irem + + + + + + + + + + + Guts'n (Japan) + 2000 + Kaneko / Kouyousha + + + + + + + + + + + + + Guttang Gottong + 1982 + Konami (Sega license) + + + + + + + + + + + + + + + + Guwange (Japan, Master Ver. 99/06/24) + 1999 + Atlus / Cave + + + + + + + + + + + + + + + + + + Guwange (Japan, Special Ver. 00/01/01) + 1999 + Atlus / Cave + + + + + + + + + + + + + + + + + + Guzzler + 1983 + Tehkan + + + + + + + + + + + + + + + + + + Gyakuten!! Puzzle Bancho (Japan) + 1996 + Fuuki + + + + + + + + + + + + Gyrodine + 1984 + Crux + + + + + + + + + + + + + + + + + + + + + + + Gyrodine (Taito Corporation license) + 1984 + Crux (Taito Corporation license) + + + + + + + + + + + + + + + + + + + + + + + Gyruss (bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + Gyruss (Centuri) + 1983 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + Gyruss (Konami) + 1983 + Konami + + + + + + + + + + + + + + + + + + Hacha Mecha Fighter (19th Sep. 1991, protected, set 1) [Use the unprotected bootleg, instead!] + 1991 + NMK + + + + + + + + + + + + Hacha Mecha Fighter (19th Sep. 1991, protected, set 2) [Use the unprotected bootleg, instead!] + 1991 + NMK + + + + + + + + + + + + Hacha Mecha Fighter (19th Sep. 1991, unprotected, bootleg Thunder Dragon conversion) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + Hacha Mecha Fighter (Location Test Prototype, 19th Sep. 1991) + 1991 + NMK + + + + + + + + + + + + + + + + Hachoo! + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + HAL21 + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + HAL21 (Japan) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + Halfway To Hell: Progear Red Label (2016-1-17 Red label ver) [Bootleg] + 2016 + The Halfway House + + + + + + + + + + + + + Hamburger (DECO Cassette) (Japan) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hammer Away (prototype) [Prototype] + 1992 + Sega / Santos + + + + + + + + + + + + + + + + + + + + + Hammerin' Harry (US, M84 hardware) + 1990 + Irem America + + + + + + + + + + + + + + + + + Hammerin' Harry (World, M81 hardware)) + 1990 + Irem + + + + + + + + + + + + + + + + + Hammerin' Harry (World, M84 hardware bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + Hang-On + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hang-On (rev A) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hang-On (Rev A, ride-on) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hang-On Jr. Rev.B + 1985 + Sega + + + + + + + + Hangly-Man (set 1) + 1981 + hack + + + + + + + + + + + + + Hangly-Man (set 2) + 1981 + hack + + + + + + + + + + + + + + + Hangly-Man (set 3) + 1981 + hack + + + + + + + + + + + + + + + + + + + Hangzo (Japan, prototype) [Prototype] + 1992 + Hot-B + + + + + + + + + + + + + + + + + + + + + Happy 6-in-1 (V100 - V100MK, China) [Incomplete Dump] + 2004 + IGS + + + + + + + + + + + + + + + + + + Happy 6-in-1 (V100 - V100MK, Hong Kong) [Incomplete Dump] + 2004 + IGS + + + + + + + + + + + + + + + + + + Happy 6-in-1 (V101 - V100MK, China) [Incomplete Dump] + 2004 + IGS + + + + + + + + + + + + + + + + + + Happy 6-in-1 (V102 - V101MK, China) + 2004 + IGS + + + + + + + + + + + + + + + + + + Hard Dunk (Japan) + 1994 + Sega + + + + + + + + + + + + + + + + + + Hard Dunk (World) + 1994 + Sega + + + + + + + + + + + + + + + + + + Hard Head + 1988 + SunA + + + + + + + + + + + + + + + + + Hard Head 2 (v2.0, Music Program v2.0) + 1991 + SunA + + + + + + + + + + + + + + + + + + Hard Head 2 (v2.0, Music Program v2.4) + 1991 + SunA + + + + + + + + + + + + + + + + + + Hard Puncher (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + Hard Yardage (v1.00) + 1993 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + Hard Yardage (v1.10) + 1993 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + Hard Yardage (v1.20) + 1993 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + Hasamu (Japan) + 1991 + Irem + + + + + + + + + + Hat Trick Hero '93 (Ver 1.0A 1993/02/28) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '93 (Ver 1.0J 1993/02/28) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '94 (Ver 2.2A 1994/05/26) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '95 (Ver 2.5A 1994/11/03) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '95 (Ver 2.5J 1994/11/03) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '95 (Ver 2.6Asia 1994/11/17) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + Hatch Catch + 1995 + SemiCom + + + + + + + + + + + + + + + Hatris (Japan) + 1990 + Video System Co. + + + + + + + + + + + Hatris (US) + 1990 + Video System Co. + + + + + + + + + + + Haunted Castle (ver. E) + 1988 + Konami + + + + + + + + + + + + + + + + Haunted Castle (ver. K) + 1988 + Konami + + + + + + + + + + + + + + + + Haunted Castle (ver. M) + 1988 + Konami + + + + + + + + + + + + + + + + Hayaoshi Quiz Grand Champion Taikai + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + Hayaoshi Quiz Nettou Namahousou (ver 1.2) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Hayaoshi Quiz Nettou Namahousou (ver 1.5) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Hayaoshi Quiz Ouza Ketteisen - The King Of Quiz + 1993 + Jaleco + + + + + + + + + + + + + + + Head On (1 player) [No sound] + 1979 + Gremlin + + + + + + + + + + + + + Head On (2 players) [No sound] + 1979 + Gremlin + + + + + + + + + + + + + Head On (bootleg on dedicated hardware) [Bootleg] + 1979 + bootleg (EFG Sanremo) + + + + + + + + + + + + + Head On (bootleg, alt maze) [Bootleg, No sound] + 1979 + bootleg + + + + + + + + + + + + + Head On (Sidam bootleg, set 1) [Bootleg, No sound] + 1979 + bootleg (Sidam) + + + + + + + + + + + + Head On (Sidam bootleg, set 2) [Bootleg, No sound] + 1979 + bootleg (Sidam) + + + + + + + + + + + + Head On N [No sound] + 1979 + Nintendo + + + + + + + + + + + + + + Head Panic (ver. 0117, 17/01/2000) [Story line & game instructions in English] + 2000 + ESD + + + + + + + + + + + + + Head Panic (ver. 0315, 15/03/2000) [Story line in Japanese, game instructions in English] + 2000 + ESD / Fuuki + + + + + + + + + + + + + Head Panic (ver. 0702, 02/07/1999) [Story line & game instructions in English] + 1999 + ESD / Fuuki + + + + + + + + + + + + + Heated Barrel (Electronic Devices license) + 1992 + TAD Corporation (Electronic Devices license) + + + + + + + + + + + + + + + + + + Heated Barrel (US) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + + + Heated Barrel (World old version) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + + + Heated Barrel (World version 2) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + + + Heated Barrel (World version 3) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + + + Heated Barrel (World version ?) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + + + Heavy Barrel (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Heavy Barrel (World) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Heavy Metal (315-5135) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + Heavy Smash (Asia version -4) + 1993 + Data East Corporation + + + + + + + + + + Heavy Smash (Europe version -2) + 1993 + Data East Corporation + + + + + + + + + + Heavy Smash (Japan version -2) + 1993 + Data East Corporation + + + + + + + + + + Heavy Unit (Japan, Alternate ROM format) + 1988 + Kaneko / Taito + + + + + + + + + + + + + + + + Heavy Unit (Japan, Newer) + 1988 + Kaneko / Taito + + + + + + + + + + + + + Heavy Unit (Japan, Older) + 1988 + Kaneko / Taito + + + + + + + + + + + + + + + + Heavy Unit (World) + 1988 + Kaneko / Taito + + + + + + + + + + + + + + + + Heavy Unit -U.S.A. Version- (US) + 1988 + Kaneko / Taito + + + + + + + + + + + + + Heavyweight Champ (Japan, FD1094 317-0046 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + Heavyweight Champ (Japan, FD1094 317-0046) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Heavyweight Champ (set 1) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + Heavyweight Champ (set 2) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + Hebereke no Popoon (Japan) + 1994 + Sunsoft / Atlus + + + + + + + + + + + + + + Hellfire (1P set) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + Hellfire (1P set, older) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + Hellfire (2P set) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + Hellfire (2P set, older) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + Herbie at the Olympics (DK conversion) [No sound] + 1984 + Century Electronics / Seatongrove Ltd + + + + + + + + + + + + + + + + + + + Hero [Parent set for working drivers] + 1984 + Century Electronics / Seatongrove Ltd + + + + + + + + + + + + + + + + Hero in the Castle of Doom (DK conversion not encrypted) + 1984 + Seatongrove Ltd (Crown license) + + + + + + + + + + + + + + + + + Hero in the Castle of Doom (DK conversion) [No sound] + 1984 + Seatongrove Ltd (Crown license) + + + + + + + + + + + + + + + + + Heuk Sun Baek Sa (Korea) + 199? + Oksan / F2 System + + + + + + + + + + + + + Hex Pool (Senko) + 1985 + Senko + + + + + + + + + Hex Pool (Shinkai) + 1986 + Shinkai + + + + + + + + Hexa + 199? + D. R. Korea + + + + + + + + + + + Hexion (Bootleg, Asia ver. AAA) [Bootleg] + 1992 + Bootleg + + + + + + + + + + + Hexion (Japan ver. JAB) + 1992 + Konami + + + + + + + + + + Hidden Catch (World) / Tul Lin Gu Lim Chat Ki '98 (Korea) (pcb ver 3.02) + 1998 + Eolith + + + + + + + + + + + + + + + Hidden Catch (World) / Tul Lin Gu Lim Chat Ki '98 (Korea) (pcb ver 3.03) + 1998 + Eolith + + + + + + + + + + + + + + + Hidden Catch 2 (pcb ver 1.00) (Kor/Eng/Jpn/Chi) + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Hidden Catch 2 (pcb ver 3.03) (Kor/Eng) (AT89c52 protected) + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Hidden Catch 2000 (AT89c52 protected) + 1999 + Eolith + + + + + + + + + + + + + + + + + + Hidden Catch 3 (ver 1.00 / pcb ver 3.05) + 2000 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (prototype, revision0 proto 8.6 12/09/90) [Prototype] + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA1 12/16/90) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA2 12/26/90) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA3 12/27/90) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA4 02/04/91) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA5 02/15/91) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + High Way Race + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Highway Chase (DECO Cassette) (US) + 1980 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Himeshikibu (Japan) + 1989 + Hi-Soft + + + + + + + + + + + + + + + + + + Hipoly (bootleg of Hyper Olympic) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Hippodrome (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hishou Zame (Japan) + 1987 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Hissatsu Buraiken (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hit the Ice (Japan) + 1990 + Taito Corporation (licensed from Midway) + + + + + + + + + + + + + + + Hit the Ice (US) + 1990 + Taito Corporation (Williams licence) + + + + + + + + + + + + + + + Hoccer (set 1) + 1983 + Eastern Micro Electronics, Inc. + + + + + + + + + + + Hoccer (set 2) + 1983 + Eastern Micro Electronics, Inc. + + + + + + + + + + + Hole Land (Japan) + 1984 + Tecfri + + + + + + + + + + + + + + + + + + Hole Land (Spain) + 1984 + Tecfri + + + + + + + + + + + + + + + + + + Holosseum (US, Rev A) + 1992 + Sega + + + + + + + + + + + + + + + + + + + Homo [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + Honey Dolls + 1995 + Barko Corp + + + + + + + + + + + + Hong Hu Zhanji II (China, set 1) + 1998 + Afega + + + + + + + + + + + Hong Hu Zhanji II (China, set 2) + 1998 + Afega + + + + + + + + + + + Hook (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + Hook (US) + 1992 + Irem America + + + + + + + + + + + + + + + + + + Hook (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + Hoops '96 (Europe/Asia 2.0) + 1996 + Data East Corporation + + + + + + + + + + + + + Hoops (Europe/Asia 1.7) + 1995 + Data East Corporation + + + + + + + + + + + + + Hopper Robo + 1983 + Sega + + + + + + + + + + + + + + Hopping Mappy + 1986 + Namco + + + + + + + + + + + + + + + Horizon + 1985 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hot Bubble (Korea) + 1998 + Afega (Pandora license) + + + + + + + + + + + + + + + + Hot Bubble (Korea, with adult pictures) + 1998 + Afega (Pandora license) + + + + + + + + + + + + + + + + Hot Chase (set 1) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Hot Chase (set 2) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hot Memory (V1.1, Germany, 11/30/94) + 1994 + Incredible Technologies (Tuning license) + + + + + + + + + + + + + + + + Hot Memory (V1.2, Germany, 12/28/94) + 1994 + Incredible Technologies (Tuning license) + + + + + + + + + + + + + + + + Hot Mind (Hard Times hardware) + 1996 + Playmark + + + + + + + + + + + + + + + + + + + + + + Hot Pinball + 1995 + Comad & New Japan System + + + + + + + + + + + + + + + + + Hot Rod (Japan, 4 Players, Floppy Based, Rev B) + 1988 + Sega + + + + + + Hot Rod (Japan, 4 Players, Floppy Based, Rev C) + 1988 + Sega + + + + + + Hot Rod (World, 3 Players, Turbo set 1, Floppy Based) + 1988 + Sega + + + + + + Hot Rod (World, 3 Players, Turbo set 2, Floppy Based) + 1988 + Sega + + + + + + Hot Shocker + 1982 + E.G. Felaco (Domino license) + + + + + + + + + + + + Hot Shocker (bootleg) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + Hotdog Storm - The First Supersonics (korea) + 1996 + Ace International Licence + + + + + + + + + + + + + Hunchback (Galaxian hardware) + 1981 + Century Electronics + + + + + + + + + + + + + + Hunchback (Scramble hardware) + 1983 + Century Electronics + + + + + + + + + + + + + + + Hunchback (set 1) [Parent set for working drivers] + 1983 + Century Electronics + + + + + + + + + + + + + + + + Hunchback Olympic (Scramble hardware) [Imperfect Sound] + 1984 + Century Electronics + + + + + + + + + + + + + + + + Hunchback Olympic [Parent set for working drivers] + 1984 + Seatongrove Ltd + + + + + + + + + + + + + + + + Hustle + 1977 + Gremlin + + + + + + + + + + Hydra + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hydra (prototype 5/14/90) [Prototype] + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Crash (version C) + 1987 + Konami + + + + + + + + + + Hyper Crash (version D) + 1987 + Konami + + + + + + + + + + Hyper Duel (Japan set 1) + 1993 + Technosoft + + + + + + + + + + Hyper Duel (Japan set 2) + 1993 + Technosoft + + + + + + + + + + Hyper Olympic + 1983 + Konami + + + + + + + + + + + + + + + + + + + + Hyper Olympic '84 + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Olympic (bootleg, set 1) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Olympic (bootleg, set 2) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Pacman + 1995 + SemiCom + + + + + + + + + + + Hyper Pacman (bootleg) [Bootleg] + 1995 + SemiCom + + + + + + + + + + Hyper Sports + 1984 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Sports (bootleg) [Bootleg, imcomplete sound] + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Sports Special (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (031222 Japan) + 2004 + Capcom + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (040202 Asia Phoenix Edition) [Bootleg] + 2004 + bootleg + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (040202 Asia Phoenix Edition, alt) [Bootleg] + 2004 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (040202 Asia) + 2004 + Capcom + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (040202 Japan) + 2004 + Capcom + + + + + + + + + + + + + + + + + + + Hyper Street Fighter II: The Anniversary Edition (040202 USA) + 2004 + Capcom + + + + + + + + + + + + + + + + + + + Hyperspace (bootleg of Asteroids) [Bootleg] + 1979 + bootleg (Rumiano) + + + + + + + + I'm Sorry (315-5110, US) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + Idol Janshi Suchie-Pai II (ver 1.0) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Idol Janshi Suchie-Pai II (ver 1.1) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Idol Mahjong - final romance 2 (Neo CD Conversion) [Hack] + 1995 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Iga Ninjyutsuden (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + IGMO + 1984 + Epos Corporation + + + + + + + + + + + + Ikari (Japan No Continues) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari (Joystick hack bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari III - The Rescue (8-Way Joystick) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari III - The Rescue (Korea, 8-Way Joystick) + 1989 + SNK + + + + + + + + + + + + + + + + + + + Ikari III - The Rescue (US, Rotary Joystick) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari III - The Rescue (World, Rotary Joystick) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + Ikari Three - The Rescue (Japan, Rotary Joystick) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari Warriors (US JAMMA) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + Ikari Warriors (US No Continues) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari Warriors (US, set 1) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari Warriors (US, set 2) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikki (Japan) + 1985 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + Image Fight (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + Image Fight (World) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + Imago (cocktail set) + 1984 + Acom + + + + + + + + + + + + + + + + + + + + + Imago (no cocktail set) + 1983 + Acom + + + + + + + + + + + + + + + + + + + + + Impacto (Billport S.A., Spanish bootleg of Scramble) [Bootleg] + 1981 + bootleg (Billport S.A.) + + + + + + + + + + + + + + + + + In The Hunt (US) + 1993 + Irem America + + + + + + + + + + + + + + + + + + In The Hunt (World) + 1993 + Irem + + + + + + + + + + + + + + + + + + In Your Face (North America, prototype) [Prototype] + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + Indianapolis (bootleg of Turbo) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Insector (prototype) [Prototype] + 1982 + Gottlieb + + + + + + + + + + + + + + Insector X (Japan) + 1989 + Taito Corporation + + + + + + + Insector X (World) + 1989 + Taito Corporation Japan + + + + + + + International Cup '94 (Ver 2.2O 1994/05/26) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Intrepid (Elsys bootleg, set 1) + 1984 + bootleg (Elsys) + + + + + + + + + + + + + Intrepid (Elsys bootleg, set 2) + 1984 + bootleg (Elsys) + + + + + + + + + + + + + Intrepid (Loris bootleg) + 1984 + bootleg (Loris) + + + + + + + + + + + + + Intrepid (set 1) + 1983 + Nova Games Ltd. + + + + + + + + + + + + + Intrepid (set 2) + 1983 + Nova Games Ltd. + + + + + + + + + + + + + IQ-Block + 1993 + IGS + + + + + + + + + + Iron Fortress + 1998 + Eolith + + + + + + + + + + + + + Iron Horse + 1986 + Konami + + + + + + + + + + + + + + + Itazura Tenshi (Japan) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + + + + + Ixion (prototype) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + J-League Soccer V-Shoot (Japan) + 1994 + Namco + + + + + + + + + + + + + + + + + J. J. Squawkers + 1993 + Athena / Able + + + + + + + + + + + + + + + + + J. J. Squawkers (bootleg) [Bootleg] + 1999 + bootleg + + + + + + + + + + J. J. Squawkers (bootleg, Blandia conversion) + 1999 + bootleg + + + + + + + + + + + + J. J. Squawkers (older) + 1993 + Athena / Able + + + + + + + + + + + + + + + + + Jack the Giantkiller (set 1) + 1982 + Hara Industries (Cinematronics license) + + + + + + + + + + + + + + + + Jack the Giantkiller (set 2) + 1982 + Hara Industries (Cinematronics license) + + + + + + + + + + + + + + + + Jack the Giantkiller (set 3) + 1982 + Hara Industries (Cinematronics license) + + + + + + + + + + + + + + + + Jackal (bootleg, Rotary Joystick) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jackal (World, 8-way Joystick) + 1986 + Konami + + + + + + + + + + + + Jackal (World, Rotary Joystick) + 1986 + Konami + + + + + + + + + + + + Jackie Chan - The Kung-Fu Master (rev 3?) + 1995 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + Jackie Chan - The Kung-Fu Master (rev 4?) + 1995 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + Jackie Chan in Fists of Fire + 1995 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + Jackson + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jail Break + 1986 + Konami + + + + + + + + + + + + + + + + Jail Break (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + Jan Jan Paradise + 1996 + Electro Design + + + + + + + + + + + + + + + Jan Jan Paradise 2 + 1997 + Electro Design + + + + + + + + + + + + + + + + Jeon Sin - Guardian Storm (Korea) + 1998 + Afega + + + + + + + + + + + Jiao! Jiao! Jiao! (China, 2P set) + 1989 + Toaplan (Hong Kong Honest Trading license) + + + + + + + + + + + + + + + + + + Jibun wo Migaku Culture School Mahjong Hen + 1994 + Face + + + + + + + + + + + Jigoku Meguri (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + Jigoku Meguri (Japan, hack?) + 19?? + Taito Corporation + + + + + + + + + + + + + + Jin + 1982 + Falcon + + + + + + + + + + Jitsuryoku!! Pro Yakyuu (Japan) + 1989 + Jaleco + + + + + + + + + + + + + + + Jockey Grand Prix (set 1) + 2001 + Sun Amusement / BrezzaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jockey Grand Prix (set 2) + 2001 + Sun Amusement / BrezzaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Joe & Mac Returns (Japan, Version 1.2, 1994.06.06) + 1994 + Data East + + + + + + + + + + Joe & Mac Returns (World, Version 1.0, 1994.05.19) + 1994 + Data East + + + + + + + + + Joe & Mac Returns (World, Version 1.1, 1994.05.27) + 1994 + Data East + + + + + + + + + + Joinem + 1983 + Global Corporation + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Euro 990913) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Euro 990913, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Euro 990927) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Euro 990927, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Japan 990913) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Japan 990913, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Japan 990927) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Bizarre Adventure: Heritage for the Future / JoJo no Kimyou na Bouken: Mirai e no Isan (Japan 990927, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 981202) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 981202, NO CD) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 990108) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 990108, NO CD) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 990128) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Asia 990128, NO CD) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Euro 981202) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Euro 990108) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Euro 990128) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Japan 981202) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Japan 990108) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (Japan 990128) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (USA 981202) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (USA 990108) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + JoJo's Venture / JoJo no Kimyou na Bouken (USA 990128) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jolly Jogger + 1982 + Taito Corporation + + + + + + + + + + + + + + + + Jonas Indiana and the Lost Temple of RA (20050717) [Homebrew] + 2005 + blastar@gmx.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jongputer + 1980 + Taito + + + + + + + + + + + Journey + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Joust (Solid Red label) + 1982 + Williams + + + + + + + + + + + + + + + + + + Joust (White/Green label) + 1982 + Williams + + + + + + + + + + + + + + + + + + Joust (Yellow label) + 1982 + Williams + + + + + + + + + + + + + + + + + + Joyful Road (Japan) + 1983 + SNK + + + + + + + + + + + + + + + Joyman + 1982 + hack + + + + + + + + + + + + + + + + + + + Jr. Pac-Man (11/9/83) + 1983 + Bally Midway + + + + + + + + + + + + + + + Jr. Pac-Man (speedup hack) + 1983 + hack + + + + + + + + + + + + + + + JT 104 / NinjaKun Ashura no Shou + 1987 + UPL (United Amusements license) + + + + + + + + + + + + + + + + Judge Dredd (rev TA1 7/12/92, location test) [Prototype] + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + JuJu Densetsu (Japan) + 1989 + TAD Corporation + + + + + + + + + + + + + + + + + + JuJu Densetsu (Playmark bootleg) + 1989 + bootleg (Playmark) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jumbo Ozaki Super Masters Golf (Japan, Floppy Based, FD1094 317-0058-05b) + 1989 + Sega + + + + + + + Jumbo Ozaki Super Masters Golf (World, Floppy Based, FD1094 317-0058-05c) + 1989 + Sega + + + + + + + Jump Bug + 1981 + Rock-ola + + + + + + + + + + + + + + + + + Jump Bug (bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + + Jump Coaster + 1983 + Kaneko + + + + + + + + + + + + + Jump Coaster (Taito) + 1983 + Kaneko (Taito license) + + + + + + + + + + + + + Jump Coaster (World) + 1983 + Kaneko Elc. Co + + + + + + + + + + + + + Jump Kids + 1993 + Comad + + + + + + + + + + + + + + Jump Kun (prototype) + 1984 + Kaneko + + + + + + + + + + + + + + + + + + + Jump Shot + 1985 + Bally Midway + + + + + + + + + + + + + Jump Shot Engineering Sample + 1985 + Bally Midway + + + + + + + + + + + + + Jumping (set 1) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jumping (set 2) [Bootleg] + 1988 + bootleg (Seyutu) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jumping (set 3, Imnoe PCB) [Bootleg] + 1988 + bootleg (Seyutu) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jumping Break (set 1) + 1999 + F2 System + + + + + + + + + + Jumping Break (set 2) + 1999 + F2 System + + + + + + + + + + + Jumping Cross (set 1) + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + Jumping Cross (set 2) + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + Jumping Jack + 1984 + Universal + + + + + + + + + + + + + + + Jumping Pop (Nics, Korean bootleg of Plump Pop) + 1992 + Nics + + + + + + + + + Jumping Pop (set 1) + 2001 + ESD + + + + + + + + + + Jumping Pop (set 2) + 2001 + Emag Soft + + + + + + + + + + + + + + + Jungle Boy (bootleg) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Jungle Hunt (Brazil) + 1983 + Taito do Brasil + + + + + + + + + + + + + + + + + + + + + Jungle Hunt (US) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + Jungle King (alternate sound) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Jungle King (Japan) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Jungle King (Japan, earlier) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Jungler + 1981 + Konami + + + + + + + + + + + + + + + Junior King (bootleg of Donkey Kong Jr.) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Juno First + 1983 + Konami + + + + + + + + + + + + + + + + + Juno First (Gottlieb) + 1983 + Konami (Gottlieb license) + + + + + + + + + + + + + + + + + Jurassic 99 (Cadillacs and Dinosaurs bootleg with EM78P447AP, 930201 ?) [Bootleg, No sound] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + Jurassic Park (Japan, Deluxe) [Small GFX Issues] + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + Jurassic Park (Japan, Rev A, Conversion) + 1993 + Sega + + + + + + + + + + + + + + + + + + + + Jurassic Park (Japan, Rev A, Deluxe) [Small GFX Issues] + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + Jurassic Park (World, Rev A) [Small GFX Issues] + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + Juuouki (set 1, Japan, FD1094 317-0065) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + Juuouki (set 3, Japan, FD1094 317-0068 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Juuouki (set 3, Japan, FD1094 317-0068) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Juuouki (set 7, Japan, 8751 317-0077) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jyangokushi -Haoh no Saihai- (990527 Japan) + 1999 + Mitchell + + + + + + + + + + + + + + + + Jyanshin Densetsu - Quest of Jongmaster + 1994 + Aicom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kabuki-Z (Japan) + 1988 + Taito Corporation + + + + + + + + + + Kabuki-Z (World) + 1988 + Taito Corporation Japan + + + + + + + + + + Kageki (hack) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + Kageki (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + Kageki (US) + 1988 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + Kageki (World) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + Kaiketsu Yanchamaru (Japan) + 1986 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kaiser Knuckle (Ver 2.1J 1994/07/29) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kaiser Knuckle (Ver 2.1O 1994/07/29) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kaitei Daisensou (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + Kaitei Takara Sagashi + 1980 + K.K. Tokki + + + + + + + + + + Kaitei Takara Sagashi (Namco license) + 1980 + K.K. Tokki (Namco license) + + + + + + Kamakazi III (superg hack) [Bootleg] + 1979 + bootleg + + + + + + + + + + + Kamikaze (Electrogame, Spanish bootleg of Galaxian) + 1979 + bootleg (Electrogame) + + + + + + + + + + + Kamikaze (Euromatic S.A., Spanish bootleg of Scramble) [Bootleg] + 1981 + bootleg (Euromatic S.A.) + + + + + + + + + + + + + + + + + Kamikaze Cabbie + 1984 + Data East Corporation + + + + + + + + + + + + Kangaroo + 1982 + Sun Electronics + + + + + + + + + + + + + + + + Kangaroo (Atari) + 1982 + Sun Electronics (Atari license) + + + + + + + + + + + + + + + + Kangaroo (bootleg) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + Karate Blazers (US) + 1991 + Video System Co. + + + + + + + + + + + + + + + + Karate Blazers (World, set 1) + 1991 + Video System Co. + + + + + + + + + + + + + + + + Karate Blazers (World, set 2) + 1991 + Video System Co. + + + + + + + + + + + + + + + + Karate Blazers (World, Tecmo license) + 1991 + Video System Co. (Tecmo license) + + + + + + + + + + + + + + + + Karate Champ (US VS version, set 1) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Champ (US VS version, set 2) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Champ (US VS version, set 3) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Champ (US VS version, set 4) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Champ (US) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Dou (Arfyc bootleg) + 1984 + bootleg (Arfyc) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Dou (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karian Cross (Rev. 1.0) + 1996 + Deniam + + + + + + + + + + + + + + + + Karnov (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Karnov (US, rev 5) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + Karnov (US, rev 6) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + Karnov's Revenge / Fighter's History Dynamite + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ken-Go (set 1) + 1991 + Irem + + + + + + + + + + + + + + + Ken-Go (set 2) + 1991 + Irem + + + + + + + + + + + + + + + + + Kero Kero Keroppi no Issyoni Asobou (Japan) + 1993 + Sammy Industries + + + + + + + + + + + Kero Kero Keroppi's Let's Play Together (USA, Version 2.0) + 1995 + American Sammy + + + + + + + + + Ketsui Kizuna Jigoku Tachi (2003/01/01. Master Ver.) (alt rom fill) + 2002 + CAVE / AMI + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (2003/01/01. Master Ver., bootleg cartridge conversion) [Bootleg] + 2003 + CAVE / AMI + + + + + + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Arrange Mode version 1.0, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Arrange Mode version 1.5, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Arrange Mode version 1.51, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Arrange Mode version 1.7, hack by Trap15) [Hack] + 2014 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Fast version, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Japan, 2003/01/01 Master Ver) + 2002 + CAVE / AMI + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Japan, 2003/01/01 Master Ver.) + 2002 + CAVE / AMI + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (Japan, 2003/01/01. Master Ver.) + 2002 + CAVE / AMI + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (MR. Stoic version 1.5, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Ketsui Kizuna Jigoku Tachi (MR. Stoic version 1.51, hack by Trap15) [Hack] + 2012 + hack / Trap15 + + + + + + + + + + + + Kick (cocktail) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + Kick (upright) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + Kick and Run (US) + 1986 + Taito America Corp + + + + + + + + + + + + + + + Kick and Run (World) + 1986 + Taito Corporation + + + + + + + + + + + + + + + Kick Boy + 1983 + Nichibutsu + + + + + + + + + + + + + + + + + + + Kick Goal (set 1) + 1995 + TCH + + + + + + + + + + + + Kick Goal (set 2) + 1995 + TCH + + + + + + + + + + + + Kick Off (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + Kick Rider + 1984 + Universal + + + + + + + + + + + + + + + Kick Start - Wheelie King + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + Kicker + 1985 + Konami + + + + + + + + + + + + + + + Kickle Cubele [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + Kickman (upright) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + Kid Niki - Radical Ninja (US) + 1986 + Irem (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kid Niki - Radical Ninja (World) + 1986 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kid no Hore Hore Daisakusen + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Kid no Hore Hore Daisakusen (bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + KiKi KaiKai + 1986 + Taito Corporation + + + + + + + + + + + + + + Killer Instinct (ROM ver. 1.3) [Works best in 64-bit build] + 1994 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct (ROM ver. 1.4) [Works best in 64-bit build] + 1994 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct (ROM ver. 1.5 AnyIDE) [Hack, Works best in 64-bit build] + 1994 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct (ROM ver. 1.5d) [Works best in 64-bit build] + 1994 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct II (ROM ver. 1.0) [Works best in 64-bit build] + 1995 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct II (ROM ver. 1.1) [Works best in 64-bit build] + 1995 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct II (ROM ver. 1.3) [Works best in 64-bit build] + 1995 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct II (ROM ver. 1.4 AnyIDE) [Works best in 64-bit build] + 1995 + Rare/Nintendo + + + + + + + + + + + + Killer Instinct II (ROM ver. 1.4) [Works best in 64-bit build] + 1995 + Rare/Nintendo + + + + + + + + + + + + King & Balloon (Japan) + 1980 + Namco + + + + + + + + + + + + + King & Balloon (US) + 1980 + Namco + + + + + + + + + + + + + King of Boxer (Japan) + 1985 + Wood Place Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of Boxer (World) + 1985 + Wood Place Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of Gladiator (The King of Fighters '97 bootleg) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of Gladiator Plus (The King of Fighters '97 bootleg) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters (set 1) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters (set 2) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters 2 - The Next Thing (NGM-039)(NGH-039) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters 2 - The Next Thing (older) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters 2 - The Next Thing (prototype) [Prototype] + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kingdom Grandprix (World) + 1994 + Raizing / 8ing + + + + + + + + + + Kirameki Star Road (Ver 2.10J 1997/08/29) [No sound] + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Kitten Kaboodle + 1988 + Konami + + + + + + + + + Kizuna Encounter - Super Tag Battle / Fu'un Super Tag Battle + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Klax (Germany, version 2) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (Japan, version 3) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (Japan, version 4) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (version 4) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (version 5) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (version 6) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + KlonDike+ + 1999 + Eolith + + + + + + Knight Boy + 1986 + bootleg + + + + + + + + + + + + + + Knightmare (prototype) + 1983 + Gottlieb + + + + + + + + + + + + + + Knights of the Round (911127 etc) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Knights of the Round (911127 Japan, B-Board 89625B-1) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Knights of the Round (911127 Japan, B-Board 91634B-2) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Knights of the Round (911127 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Knights of the Round (bootleg set 1 (with YM2151 + 2xMSM5205), 911127 etc) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + Knights of the Round (bootleg set 2, 911127 etc) [Bootleg] + 1991 + bootleg + + + + + + + + + + + Knights of the Round (bootleg set 3 (with 2xMSM5205), 911127 etc) [Bootleg, unemulated graphics] + 1991 + bootleg + + + + + + + + + + + + + + + + Knights of the Round (bootleg set 4 (with YM2151 + 2xMSM5205), 911127 etc) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + Knights of the Round (bootleg set 5, 911127 Japan) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + Knights of the Round (hack set 1) [Hack] + 1991 + hack + + + + + + + + + + + + + + + + Knights of the Round (hack set 2, 911127 etc) [Hack] + 1991 + hack + + + + + + + + + + + + + + + + Knights of Valour - Sangoku Senki (V111, Japan) + 1999 + IGS (Alta Co., LTD License) + + + + + + + + + + + + + + + + + + + + + + + Knights of Valour - Sangoku Senki (V114, Hong Kong) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + + + Knights of Valour - Sangoku Senki (V115) + 1999 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour - Sangoku Senki (V117, Hong Kong) + 1999 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V100, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V101, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V102, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V103, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V104, China) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V106, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 (V107, Hong Kong) + 2000 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Extend Magic Plus (Hack) [Hack] + 2020-09-07 + Hack + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Feng Wu Long Yin (Ver. 205S, Hack) [Hack] + 2021-04-07 + Hack + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Nine Dragons (VM200XX) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Nine Dragons (VM202XX, Japan) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Nine Dragons (VM203XX, Korea) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Nine Dragons (VM204XX, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Nine Dragons (VM205XX, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour 2 Plus - Xie Feng Tian Chi (Hack) [Hack] + 2019-12-16 + Hack + + + + + + + + + + + + + + + + + + + + + + Knights of Valour Plus - Qun Xiong Luan Wu 2020 (Hack) [Hack] + 2021-03-31 + Hack + + + + + + + + + + + + + + + + + + + Knights of Valour Plus - Sangoku Senki Plus (V119) [no PLUS on screen when set to KOREA] + 1999 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour Plus - Sangoku Senki Plus (V119, Korea) [no PLUS on screen when set to KOREA] + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes / Yi Tong Zhong Yuan Qing Ban (2020-A, hack) [Hack, Bootleg, Imperfect Protection Emulation] + 2020-07-21 + Hack + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes / Yi Tong Zhong Yuan Wu Shuang Ban (2019-0, hack) [Hack, Bootleg, Imperfect Protection Emulation] + 2018 + Hack + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus (The Best Firepower In 2020, 2020-02-06) [Hack, Bootleg, Imperfect Protection Emulation] + 2020 + Hack + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus (The Road to Survival True King Tian Wang, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2020-01-03 + Hack + + + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus (The Road to Survival True King, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2018 + Hack + + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus / Sangoku Senki Super Heroes Plus (V100, China) [Imperfect Protection Emulation] + 2004 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus / Sangoku Senki Super Heroes Plus (V101) [Imperfect Protection Emulation] + 2004 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour Super Heroes Plus / Sangoku Senki Super Heroes Plus (V101, China) [Imperfect Protection Emulation] + 2004 + IGS + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (bootleg, V104, China) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (V100) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (V101) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (V102) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (V103) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour Superheroes / Sangoku Senki Superheroes (V104, China) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Knights of Valour: Ao Shi San Guo / Sangoku Senki: Ao shi San Guo (V202CN, China) [Bootleg, Imperfect Protection Emulation] + 2008 + IGS + + + + + + + + + + + + + + + + + + + Knights of Valour: Quan Huang San Guo Special / Sangoku Senki: Quan Huang San Guo Special (V303CN alt, China) [Bootleg] + 1999 + IGS + + + + + + + + + + + + + + + + + Knights of Valour: Quan Huang San Guo Special / Sangoku Senki: Quan Huang San Guo Special (V303CN, China) [Bootleg] + 1999 + IGS + + + + + + + + + + + + + + + + + Knights of Valour: Quan Huang San Guo Special / Sangoku Senki: Quan Huang San Guo Special (V303CN, China, decrypted version) [Bootleg] + 1999 + IGS + + + + + + + + + + + + + + + Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (V119, set 1) + 1999 + ANX + + + + + + + + + + + + + + + + + + + Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (V119, set 2) + 1999 + ANX + + + + + + + + + + + + + + + + + + + Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (V119, set 3) + 1999 + ANX + + + + + + + + + + + + + + + + + + + Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (V119, set 4) + 1999 + ANX + + + + + + + + + + + + + + + + + + + Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (V119, set 5) + 1999 + ANX + + + + + + + + + + + + + + + + + + + Knights of Valour: Yi Tong Zhong Yuan / Sangoku Senki: Yi Tong Zhong Yuan (V201, China) [Imperfect Protection Emulation] + 1999 + IGS + + + + + + + + + + + + + + + + + + + Knock Out!! + 1982 + KKK + + + + + + + + + + Knuckle Bash + 1993 + Toaplan / Atari + + + + + + + + + + Knuckle Bash (Korean PCB) + 1993 + Toaplan / Taito + + + + + + + + + + Knuckle Bash 2 (bootleg) [Bootleg] + 1999 + bootleg + + + + + + + + + Knuckle Heads (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + Knuckle Heads (Japan, Prototype?) + 1992 + Namco + + + + + + + + + + + + + + + + + Knuckle Heads (World) + 1992 + Namco + + + + + + + + + + + + + + + + Knuckle Joe (set 1) + 1985 + [Seibu Kaihatsu] (Taito license) + + + + + + + + + + + + + + + + + + + + + Knuckle Joe (set 2) + 1985 + [Seibu Kaihatsu] (Taito license) + + + + + + + + + + + + + + + + + + + + + Koi Koi Shimasho 2 - Super Real Hanafuda (Japan) + 1997 + Visco + + + + + + + + + + + + + + + Koi no Hotrock (Japan) + 1986 + Konami + + + + + + + + + + + + + + Kokontouzai Eto Monogatari (Japan) + 1994 + Visco + + + + + + + + + Konami '88 + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Konami GT + 1985 + Konami + + + + + + + + + + + + + + Konami RF2 - Red Fighter + 1985 + Konami + + + + + + + + + + Konami Test Board (GX800, Japan) + 1987? + Konami + + + + + Konami's Ping-Pong + 1985 + Konami + + + + + + + + + + Kong (Donkey Kong conversion on Galaxian hardware) [Bad Colours] + 198? + Taito do Brasil + + + + + + + + + + + + + + + + + Koro Koro Quest (Japan) + 1999 + Takumi + + + + + + + + Korosuke Roller + 1981 + Kural Electric + + + + + + + + + + + + + Kosodate Quiz My Angel (Japan) + 1996 + Namco + + + + + + + + + + + + + + + + Kosodate Quiz My Angel 2 (Japan) + 1996 + Namco + + + + + + + + + + + + + + + + Koukuu Kihei Monogatari - The Legend of Air Cavalry (Japan) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Koutetsu Yousai Strahl (Japan set 1) + 1992 + UPL + + + + + + + + + + + + + + + Koutetsu Yousai Strahl (Japan set 2) + 1992 + UPL + + + + + + + + + + + + + + + Koutetsu Yousai Strahl (World) + 1992 + UPL + + + + + + + + + + + + + + + Kozmik Kroozr + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + Kozure Ookami (Japan) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + Kram (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + Kram (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + Krazy Bowl + 1994 + American Sammy + + + + + + + + + Krull + 1983 + Gottlieb + + + + + + + + + + + + + + + + Kuhga - Operation Code 'Vapor Trail' (Japan revision 3) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + Kung-Fu Master + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (bootleg set 1) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (bootleg set 2) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (bootleg set 3) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (Data East) + 1984 + Irem (Data East License) + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Taikun + 1984 + Seibu Kaihatsu Inc. + + + + + + + + + + + + + + + + Kung-Fu Taikun (alt) + 1984 + Seibu Kaihatsu Inc. + + + + + + + + + + + + + + + + Kuri Kinton (Japan) + 1988 + Taito Corporation + + + + + + + + + + Kuri Kinton (US) + 1988 + Taito America Corporation + + + + + + + + + + Kuri Kinton (US, World Games license) + 1988 + Taito Corporation (World Games, Inc. license) + + + + + + + + + + Kuri Kinton (World) + 1988 + Taito Corporation Japan + + + + + + + + + + Kuri Kinton (World, prototype?) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + Kusayakyuu + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Kyohkoh-Toppa (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + Kyros + 1987 + Alpha Denshi Co. (World Games Inc. license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyros No Yakata (Japan) + 1986 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyukyoku Sentai Dadandarn (ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + Kyukyoku Tiger (Japan) + 1987 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyukyoku Tiger II (Ver 2.1J 1995/11/30) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Kyuukai Douchuuki (Japan, new version (Rev B)) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyuukai Douchuuki (Japan, old version) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyuukoukabakugekitai - Dive Bomber Squad (Japan, prototype) [Prototype, bugs are normal!] + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LA Girl [Bootleg] + 1992 + bootleg + + + + + + + + Labyrinth Runner (Japan) + 1987 + Konami + + + + + + + Labyrinth Runner (World Ver. K) + 1987 + Konami + + + + + + + + + + Lady Bug + 1981 + Universal + + + + + + + + + + + + + + + + Lady Bug (bootleg on Galaxian hardware) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + Lady Bug (bootleg set 1) + 1981 + bootleg + + + + + + + + + + + + + + + + Lady Killer [Imperfect graphics] + 1993 + Yanyaka (Mitchell license) + + + + + + + + + + + Lady Master of Kung Fu (set 1, newer) + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + + Lady Master of Kung Fu (set 2, older) + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + + Land Breaker (World) / Miss Tang Ja Ru Gi (Korea) (pcb ver 1.0) (AT89c52 protected) + 1999 + Eolith + + + + + + + + + + + + + + + + + Land Breaker (World) / Miss Tang Ja Ru Gi (Korea) (pcb ver 3.02) + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Land Breaker (World) / Miss Tang Ja Ru Gi (Korea) (pcb ver 3.03) (AT89c52 protected) + 1999 + Eolith + + + + + + + + + + + + + + + + + Land Maker (Ver 2.01J 1998/06/01) + 1998 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Land Maker (Ver 2.02O 1998/06/02) + 1998 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Land Maker (Ver 2.02O 1998/06/02) (Prototype) [Prototype] + 1998 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Land Sea Air Squad / Riku Kai Kuu Saizensen + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + Lansquenet 2004 (Shock Troopers - 2nd Squad bootleg) [Bootleg] + 1998 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Las Vegas Girl (Girl '94) + 1994 + Comad + + + + + + + + + Laser Ghost (Japan, 317-0164) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + Laser Ghost (US, 317-0165 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + Laser Ghost (US, 317-0165) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + Laser Ghost (World, 317-0166 decrypted) [Bootleg] + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + Laser Ghost (World, 317-0166) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + Lasso + 1982 + SNK + + + + + + + + + + + + + Last Duel (bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Duel (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + Last Duel (US New Ver.) + 1988 + Capcom + + + + + + + + + + + + + + + + + Last Duel (US Old Ver.) + 1988 + Capcom + + + + + + + + + + + + + + + + + Last Fortress - Toride (Erotic, Rev A) + 1994 + Metro + + + + + + + + + + + + + + + Last Fortress - Toride (Erotic, Rev C) + 1994 + Metro + + + + + + + + + + + + + + + Last Fortress - Toride (German) + 1994 + Metro + + + + + + + + + + + Last Fortress - Toride (Japan, VG420 PCB) + 1994 + Metro + + + + + + + + + + + + + + + Last Fortress - Toride (Japan, VG460 PCB) + 1994 + Metro + + + + + + + + + + + Last Fortress - Toride (Korea) + 1994 + Metro + + + + + + + + + + + + + + + Last Hope (bootleg AES to MVS conversion, no coin support) [Bootleg] + 2005 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Hope CD Beta (Neo CD conversion) [Hack, Imperfect graphics] + 2007 + NG:Dev.Team + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last KM (Ver 1.0.0275) + 1995 + Gaelco + + + + + + + + + + Last Mission (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + Last Mission (US revision 5) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + Last Mission (US revision 6) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + Last Mission (World revision 8) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + Last Resort + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Resort (prototype) [Prototype] + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Striker / Kyuukyoku no Striker + 1989 + East Technology + + + + + + + + + + + + Last Survivor (FD1094 317-0083 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Survivor (FD1094 317-0083) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Le Bagnard (Itisa, Spain) + 1982 + Valadon Automation (Itisa license) + + + + + + + + + + + + + + + + + + + Le Bagnard (Itisa, Spain, older) + 1982 + Valadon Automation (Itisa license) + + + + + + + + + + + + + + + + + + Le Bagnard (set 1) + 1982 + Valadon Automation + + + + + + + + + + + + + + + + + + Le Bagnard (set 2) + 1982 + Valadon Automation + + + + + + + + + + + + + + + + + + Lead Angle (Japan) + 1988 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + League Bowling (NGM-019)(NGH-019) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Led Storm (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + Led Storm Rally 2011 (US) + 1988 + Capcom + + + + + + + + + + + + + + + + Led Storm Rally 2011 (World) + 1988 + Capcom + + + + + + + + + + + + + + + + Lee Trevino's Fighting Golf (US, Ver 2, set 1) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + Lee Trevino's Fighting Golf (US, Ver 2, set 2) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + Lee Trevino's Fighting Golf (World?) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + Legend + 1986 + Kyugo / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Legend of Hero Tonma + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + Legend of Hero Tonma (bootleg, set 1) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Legend of Hero Tonma (bootleg, set 2) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legend of Hero Tonma (Japan) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + Legend of Heroes + 2000 + Limenko + + + + + + + + + + + + + + + + + + + + + + Legend of Makai (World) + 1988 + Jaleco + + + + + + + + + + + Legend of Success Joe / Ashitano Joe Densetsu + 1991 + SNK / WAVE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legendary Wings (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Legendary Wings (US set 1) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + Legendary Wings (US set 2) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + Legion (bootleg of Legend) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legion - Spinner-87 (World ver 2.03) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + Legionnaire (Japan) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + Legionnaire (US) + 1992 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + Legionnaire (World) + 1992 + TAD Corporation + + + + + + + + + + + + + + + + Lei Shen Zhuan Thunder Deity Biography (Chinese hack of Battle Garegga) [Hack] + 1996 + hack + + + + + + + + + + + + Lemmings (US prototype) + 1991 + Data East USA + + + + + + + + + + + + + + + + + + + Lethal Crash Race (set 1) + 1993 + Video System Co. + + + + + + + + + + + + + + + Lethal Crash Race (set 2) + 1993 + Video System Co. + + + + + + + + + + + + + + + Lethal Enforcers (ver EAA, 09/09/92 09:44) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver EAB, 10/14/92 19:53) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver EAD, 11/11/92 10:52) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver EAE, 11/19/92 16:24) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver UAA, 08/17/92 21:38) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver UAB, 09/01/92 11:12) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver UAE, 11/19/92 15:04) + 1992 + Konami + + + + + + + + + + + + + + Lethal Enforcers (ver unknown, US, 08/06/92 15:11, hacked/proto?) + 1992 + Konami + + + + + + + + + + + + + + Lethal Thunder (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + Levers + 1983 + Rock-ola + + + + + + + + + + + + + + Libble Rabble + 1983 + Namco + + + + + + + + + + + + + + + + Liberation + 1984 + Data East Corporation + + + + + + + + + + + + + + + + Lifeforce (Japan) + 1987 + Konami + + + + + + + + + + Lifeforce (US) + 1986 + Konami + + + + + + + + + + Light Bringer (Ver 2.1J 1994/02/18) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Light Bringer (Ver 2.2O 1994/04/08) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Lightning Fighters (Asia) + 1990 + Konami + + + + + + + + + + + Lightning Fighters (US) + 1990 + Konami + + + + + + + + + + + Lightning Fighters (World) + 1990 + Konami + + + + + + + + + + + Lightning Swords + 1991 + Irem + + + + + + + + + + + + + + + Limited Edition Hang-On + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Limited Edition Hang-On (Enhanced Edition v2.0.2) + 2014 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (Japan, FD1094 317-0134 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (Japan, FD1094 317-0134) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (US, FD1094 317-0135 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (US, FD1094 317-0135) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (World, FD1094 317-0136 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Line of Fire / Bakudan Yarou (World, FD1094 317-0136) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Linky Pipe + 1998 + Eolith + + + + + + + + + + + + + Liquid Kids (US) + 1990 + Taito America Corporation + + + + + + + + + + + + Liquid Kids (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + Little Hero [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Live Quiz Show + 1999 + Andamiro Entertainment Co. Ltd. + + + + + + + + + + + + Lizard Wizard + 1985 + Techstar (Sunn license) + + + + + + + + + + + + + + + Lock On (Philko) + 1991 + Philco + + + + + + + + + + + + + + + + + Lock'n'Chase + 1981 + Data East Corporation + + + + + + + + + + + + + + + + Lock'n'Chase (DECO Cassette) (Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lock'n'Chase (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Loco-Motion + 1982 + Konami (Centuri license) + + + + + + + + + + + + + + + + Loco-Motion (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + Lode Runner (set 1) + 1984 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + Lode Runner (set 2) + 1984 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + Lode Runner - The Dig Fight (ver. A) + 2000 + Psikyo + + + + + + + + + + Lode Runner - The Dig Fight (ver. B) + 2000 + Psikyo + + + + + + + + + + Lode Runner II - The Bungeling Strikes Back + 1984 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lode Runner III - Majin No Fukkatsu + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + Lode Runner III - The Golden Labyrinth + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + Lode Runner IV - Teikoku Karano Dasshutsu + 1986 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + Logic Pro (Japan) + 1996 + Deniam + + + + + + + + + + + + Logic Pro 2 (Japan) + 1997 + Deniam + + + + + + + + + + Looper + 1982 + Orca + + + + + + + + + + + + Lord of Gun (USA) + 1994 + IGS + + + + + + + + + + + + + + + + + + + Lost Tomb (Easy) + 1982 + Stern + + + + + + + + + + + + + + + Lost Tomb (Hard) + 1982 + Stern + + + + + + + + + + + + + + + Lost Worlds (Japan Old ver.) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Lost Worlds (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Lot Lot + 1985 + Irem (licensed from Tokuma Shoten) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lotto Fun + 1987 + H.A.R. Management + + + + + + + + + + + + + + + + Lovely Pop Mahjong JangJang Shimasho (Japan) + 1996 + Visco + + + + + + + + + + + + + + + + + + + + Lovely Pop Mahjong JangJang Shimasho 2 (Japan) + 2000 + Visco + + + + + + + + + + + + + + + + Lover Boy + 1983 + G.T Enterprise Inc + + + + + + + + + + + + + Luan Shi Ying Xiong (hack of Knights of Valour Super Heroes Plus, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2014 + Hack + + + + + + + + + + + + + + + + + + + + Luan Shi Ying Xiong - Qiu Sheng Zhi Lu (hack of Knights of Valour Super Heroes Plus, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2018 + Hack + + + + + + + + + + + + + + + + + + + + Luan Shi Ying Xiong - Qun Xiong Zhu Lu (hack of Knights of Valour Super Heroes Plus, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2018 + Hack + + + + + + + + + + + + + + + + + + + + Luan Shi Ying Xiong - Qun Xiong Zhu Lu Plus (hack of Knights of Valour Super Heroes Plus, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2018 + Hack + + + + + + + + + + + + + + + + + + + + Luan Shi Ying Xiong - Qun Xiong Zhu Lu Wu Shuang Edition (Hack, ver. 500) [Hack, Bootleg, Imperfect Protection Emulation] + 2020-12-18 + Hack + + + + + + + + + + + + + + + + + + + + + Lucky & Wild + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lucky & Wild (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lucky Poker (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lucky Today [Bad colours] + 1980 + Sigma + + + + + + + + Lunar Battle (prototype, earlier) [Prototype] + 1982 + Atari + + + + + + + + + + + + + + Lunar Battle (prototype, later) [Prototype] + 1982 + Atari + + + + + + + + + + + + + + + Lunar Lander (rev 1) + 1979 + Atari + + + + + + + + + + + Lunar Lander (rev 2) + 1979 + Atari + + + + + + + + + + + Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 1.05 / 981214) + 1999 + Omega System (Adko license) + + + + + + + + + + + Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 2.9 / 990108) + 1999 + Omega System + + + + + + + + + + Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 3.0 / 990128) + 1999 + Omega System + + + + + + + + + + + M.I.A. - Missing in Action (version R) (Japan) + 1989 + Konami + + + + + + + + + + + + + + + + M.I.A. - Missing in Action (version S) + 1989 + Konami + + + + + + + + + + + + + + M.I.A. - Missing in Action (version T) + 1989 + Konami + + + + + + + + + + + + + + Mach Breakers (World, MB2) + 1995 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + Mach Breakers - Numan Athletics 2 (Japan, MB1) + 1995 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + Mach-9 (bootleg of Vulgus) + 1984 + bootleg (ITISA) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Macho Mouse + 1982 + Techstar + + + + + + + + + + + + + + Macross II (Korea) + 1993 + Banpresto + + + + + + + + + + + + + Macross Plus + 1996 + MOSS / Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + Mad Crasher + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + Mad Crusher (Japan) + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + Mad Donna (set 1) + 1995 + Tuning + + + + + + + + + + + + + + + Mad Gear (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Mad Gear (US) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + Mad Motor (prototype) [Prototype] + 1989 + Mitchell + + + + + + + + + + + + + + + + + + + + + + + + + + Mad Planets + 1983 + Gottlieb + + + + + + + + + + + + + + + + Mad Planets (UK) + 1983 + Gottlieb (Taitel license) + + + + + + + + + + + + + + + + Mad Shark + 1993 + Allumer + + + + + + + + + Mag Max + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magic Brush + 1981 + bootleg + + + + + + + + + + + + + + + Magic Bubble + 199? + Yun Sung + + + + + + + + + + + + + + + Magic Bubble (Adult version, YS-0211 PCB) + 199? + Yun Sung + + + + + + + + + + + + + + + + + + Magic Bubble (Adult version, YS-1302 PCB, set 1) + 199? + Yun Sung + + + + + + + + + + + + + + + + + + + Magic Bubble (Adult version, YS-1302 PCB, set 2) + 199? + Yun Sung + + + + + + + + + + + + + + + + + + + Magic Purple + 1996 + Unico + + + + + + + + + + Magic Sword (23.06.1990 Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magic Sword - heroic fantasy (23.06.1990 other country) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Magic Sword - heroic fantasy (25.07.1990 other country) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Magic Sword - heroic fantasy (25.07.1990 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Magical Cat Adventure + 1993 + Wintechno + + + + + + + + + + + + + + + + + Magical Cat Adventure (Japan) + 1993 + Wintechno + + + + + + + + + + + + + + + + + Magical Crystals (Japan, 92/01/13) + 1991 + Kaneko (Atlus license) + + + + + + + + + + + Magical Crystals (World, 91/12/10) + 1991 + Kaneko + + + + + + + + + + + Magical Crystals (World, 92/01/10) + 1991 + Kaneko + + + + + + + + + + + Magical Drop (Japan, Version 1.1, 1995.06.21) + 1995 + Data East + + + + + + + + + + Magical Drop II + 1996 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magical Drop III + 1997 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magical Drop III (Secret Character Hack) [Hack] + 1997 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magical Drop Plus 1 (Japan, Version 2.1, 1995.09.12) + 1995 + Data East + + + + + + + + + + Magical Error wo Sagase + 1994 + Technosoft / Jaleco + + + + + + + + + + Magician Lord (NGH-005) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magician Lord (NGM-005) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magix / Rock + 1995 + Yun Sung + + + + + + + + + + + Magix / Rock (no copyright message) + 1995 + Yun Sung + + + + + + + + + + + Mahjong Angel Kiss (ver 1.0) + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Mahjong G-Taste + 2002 + Psikyo + + + + + + + + + + + + + + + Mahjong Gakuen + 1988 + Yuga + + + + + + + + + + + + Mahjong Gakuen 2 Gakuen-chou no Fukushuu + 1989 + Face + + + + + + + + + + + + + Mahjong Hot Gimmick Integral (Japan) + 2001 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Hyper Reaction (Japan) + 1995 + Sammy + + + + + + + + + + + + + + + + Mahjong Hyper Reaction 2 (Japan) + 1997 + Sammy + + + + + + + + + + + + + + + + + + + Mahjong Kyo Retsuden (NGM-004)(NGH-004) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Kyou Jidai (Japan) + 1986 + Sanritsu + + + + + + + + + + + + + + + + + Mahjong Quest (Japan) + 1990 + Taito Corporation + + + + + + + + + + + Mahjong Quest (No Nudity) + 1990 + Taito Corporation + + + + + + + + + + + Mahou Daisakusen (Japan) + 1993 + Raizing + + + + + + + + + Main Event (1984) + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Main Stadium (Japan ver. 4) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Majestic Twelve - The Space Invaders Part IV (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + Majestic Twelve - The Space Invaders Part IV (US) + 1990 + Taito America Corporation + + + + + + + + + + Major Havoc (prototype) [Bootleg] + 1983 + Atari + + + + + + + + + + + + Major Havoc (rev 2) + 1983 + Atari + + + + + + + + + + + + Major Havoc (rev 3) + 1983 + Atari + + + + + + + + + + + + Major Havoc - Return to Vax + 2006 + hack (JMA) + + + + + + + + + + + + Major League + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Major Title (Japan) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Major Title (World) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Major Title 2 (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Major Title 2 (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Major Title 2 (World, set 1, alt sound CPU) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Major Title 2 (World, set 2) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Majuu no Ohkoku + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + Makai Densetsu (Japan) + 1988 + Jaleco + + + + + + + + + + + Makai-Mura (Japan revision C) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + Makai-Mura (Japan revision G) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + Makai-Mura (Japan) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + Make Trax (set 1) + 1981 + [Kural] (Williams license) + + + + + + + + + + + + + Make Trax (set 2) + 1981 + [Kural] (Williams license) + + + + + + + + + + + + + Makyou Senshi (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mang-Chi + 2000 + Afega + + + + + + + + + + + Manhattan (DECO Cassette) (Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Manhattan 24 Bunsyo (Japan) + 1986 + Konami + + + + + + + + + + + + + + + + Mania Challenge (set 1) + 1986 + Technos Japan (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mania Challenge (set 2) + 1986 + Technos Japan (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Maniac Square (protected, Version 1.0, Checksum CF2D) + 1996 + Gaelco + + + + + + + + + + Maniac Square (protected, Version 1.0, Checksum DEEE) + 1996 + Gaelco + + + + + + + + + + Maniac Square (prototype) + 1996 + Gaelco + + + + + + + + + + Maniac Square (unprotected, Version 1.0, Checksum BB73) + 1996 + Gaelco + + + + + + + + + Many Block + 1991 + Bee-Oh + + + + + + + + + + + + + + + + + + + Mappy (Japan) + 1983 + Namco + + + + + + + + + + + + + + Mappy (US) + 1983 + Namco + + + + + + + + + + + + + + Marchen Maze (Japan) [Error on first boot is normal] + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Marchen Maze (Japan, hack?) [Error on first boot is normal] + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Marine Boy + 1982 + Orca + + + + + + + + + + + + + Mariner + 1981 + Armenip + + + + + + + + + + + + + Mario Bros. (Japan) + 1983 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Mario Bros. (US, Revision E) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + Mario Bros. (US, Revision F) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + Mario Bros. (US, Revision G) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + Markham + 1983 + Sun Electronics + + + + + + + + + + + + + + + + + + + Mars + 1981 + Artic + + + + + + + + + + + + + + + Mars Matrix (000412 Asia) + 2000 + Takumi (Capcom license) + + + + + + + + + + + + + + + + + + Mars Matrix (000412 Japan) + 2000 + Takumi (Capcom license) + + + + + + + + + + + + + + + + + + Mars Matrix (000412 USA Phoenix Edition) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + + + Mars Matrix (000412 USA) + 2000 + Takumi (Capcom license) + + + + + + + + + + + + + + + + + + Martial Champion (ver AAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Champion (ver EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Champion (ver EAB) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Champion (ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Champion (ver UAD) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Champion (ver UAE) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Martial Masters (V102, 101, 101, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Martial Masters (V103, 102, 101, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Martial Masters (V104, 102, 101, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Martial Masters (V104, 102, 102, USA) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Martial Masters - Community Patch (Hack) [Hack] + 20?? + Hack + + + + + + + + + + + + + + + + + + + + + + Martial Masters - Secret Characters (Hack) [Hack] + 2017 + Hack + + + + + + + + + + + + + + + + + + + + + + Marvel Land (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Land (US) [Bad music - use the Japan version] + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 USA Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951024 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951117 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951117 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (951117 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970620 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 Brazil) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 Euro) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 Hispanic) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 USA Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970625 USA) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970702 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970707 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970827 Brazil) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes vs Street Fighter (970827 USA) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (971222 USA) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980112 Asia) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980112 Euro) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980112 Japan) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Asia) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Brazil) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Euro) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Hispanic) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Japan) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 Japan, single PCB) + 1998 + Capcom + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 USA Phoenix Edition) [Bootleg] + 1998 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Marvel vs Capcom - clash of super heroes (980123 USA) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Marvin's Maze + 1983 + SNK + + + + + + + + + + + + + + + + + + Masao [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + Masked Riders Club Battle Race + 1993 + Banpresto / Toei + + + + + + + + Master Boy (1987, Z80 hardware, Covielsa, set 1) + 1987 + Gaelco (Covielsa license) + + + + + + + + + + + + + + + Master Boy (1987, Z80 hardware, Covielsa, set 2) + 1987 + Gaelco (Covielsa license) + + + + + + + + + + + + Master Boy (1987, Z80 hardware, Ichi-Funtel) + 1987 + Gaelco (Ichi-Funtel license) + + + + + + + + + + + + Master of Weapon (Japan) [Imperfect graphics] + 1989 + Taito Corporation + + + + + + + + + + Master of Weapon (US) [Imperfect graphics] + 1989 + Taito America Corporation + + + + + + + + + + Master of Weapon (World) [Imperfect graphics] + 1989 + Taito Corporation Japan + + + + + + + + + + Mat Mania + 1985 + Technos Japan (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Match It + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + Match It II + 1993 + Tamtex + + + + + + + + + + Matrimelee / Shin Gouketsuji Ichizoku Toukon (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Matrimelee / Shin Gouketsuji Ichizoku Toukon (Enable Hidden Characters V2) [Hack] + 2002 + Creamymami[EGCG] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Matrimelee / Shin Gouketsuji Ichizoku Toukon (NGM-2660) (NGH-2660) + 2002 + Noise Factory / Atlus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Max RPM (ver 2) + 1986 + Bally Midway + + + + + + + + + + + + + Mayday (set 1) + 1980 + Hoei + + + + + + + + + + + Mayday (set 2) + 1980 + Hoei + + + + + + + + + + + Mayday (set 3) + 1980 + Hoei + + + + + + + + + + + + + + + Maze of Flott (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + Mazinger Z (Japan, ver. 94/06/27) + 1994 + Banpresto / Dynamic Pl. Toei Animation + + + + + + + + + + + + Mazinger Z (World, ver. 94/06/27) + 1994 + Banpresto / Dynamic Pl. Toei Animation + + + + + + + + + + + + Mechanized Attack (Japan) [Music occasionally breaks w/savestates] + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mechanized Attack (US) [Music occasionally breaks w/savestates] + 1989 + SNK + + + + + + + + + + + + + + + + + + + Mechanized Attack (US, Version 1, Single Player) [Music occasionally breaks w/savestates] + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mechanized Attack (World) [Music occasionally breaks w/savestates] + 1989 + SNK + + + + + + + + + + + + + + + + + + + Mega Blast (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Mega Blast (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Mega Blast (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Mega Force (US) + 1985 + Tehkan (Video Ware license) + + + + + + + + + + + + + + + + + + + + + + Mega Force (World) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + Mega Man - The Power Battle (950925 USA, SAMPLE Version) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Man - The Power Battle (950926 USA, SAMPLE Version) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Man - the power battle (951006 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Man - the power battle (951006 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Man - The Power Battle (951006 USA, SAMPLE Version) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Man 2 - the power fighters (960708 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + Mega Man 2 - the power fighters (960708 USA Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + Mega Man 2 - the power fighters (960708 USA) + 1996 + Capcom + + + + + + + + + + + + + + + Mega Man 2 - the power fighters (960712 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + + Mega Twins (chiki chiki boys 900619 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Mega Zone (program code H) + 1983 + Konami (Kosuka license) + + + + + + + + + + + + + + + + + + + + + Mega Zone (program code I) + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + Mega Zone (program code J) + 1983 + Konami (Interlogic / Kosuka license) + + + + + + + + + + + + + + + + + + + + + Mega Zone (program code L) + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + Mega Zone (unknown program code 1) + 1983 + Konami (Interlogic / Kosuka license) + + + + + + + + + + + + + + + + + + + + + Mega Zone (unknown program code 2) + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + Megadon + 1982 + Epos Corporation (Photar Industries License) + + + + + + + + + + + + Meijinsen (set 1) + 1986 + SNK Electronics corp. + + + + + + + + + + + + + + Meijinsen (set 2) + 1986 + SNK Electronics corp. + + + + + + + + + + + + + + Meikyu Jima (Japan) + 1988 + Irem + + + + + + + + + + + + + + + Meikyuu Hunter G (Japan, set 1) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Meikyuu Hunter G (Japan, set 2) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Mello Yello Q*bert + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Meosis Magic (Japan) + 1996? + Sammy + + + + + + + + + + + Mercenario (Commando bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Mercs (900302 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mercs (900302 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mercs (900608 USA) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Merlins Money Maze + 1986 + Zilec-Zenitone + + + + + + + + + Meta Fox + 1989 + Seta + + + + + + + + + + + + + + + + + + Metal Black (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + Metal Black (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + Metal Clash (Japan) + 1985 + Data East + + + + + + + + + + + + + Metal Freezer + 1989 + Seibu + + + + + + + + + + + + + + + + + + + Metal Hawk (Japan, Rev F) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Hawk (Rev C) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Saver + 1994 + First Amusement + + + + + + + + + + + + + + + Metal Slug (Multifunction Hack, 20180430) [Hack] + 2018 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug - Super Vehicle-001 + 1996 + Nazca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 2 - Super Vehicle-001/II (CZXInc FC2 Version, hack) [Hack] + 2015 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 2 - Super Vehicle-001/II (Multifunction Hack, 20170509) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 2 - Super Vehicle-001/II (NGM-2410) (NGH-2410) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 2 Turbo (NGM-9410) [Hack] + 2015 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (Multifunction Hack, 20190119) [Hack] + 2019 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (NGH-2560) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (NGH-2560) (Enhanced Violence Version, hack by EEZEZY) [Hack] + 2012 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (NGM-2560) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (NGM-2560, earlier) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 4 (Multifunction Hack, 20171225) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 4 (NGH-2630) + 2002 + Mega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 4 (NGM-2630) + 2002 + Mega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 4 Plus (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (bootleg, set 1) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (bootleg, set 2) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (JAMMA PCB) + 2003 + SNK Playmore + + + + + + + + + + + + + + Metal Slug 5 (Multifunction Hack, 20170523) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (New Campaign, 2016-03-10) [Hack] + 2003 + hack, C.B + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (NGH-2680) + 2003 + SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 (NGM-2680) + 2003 + SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 5 Plus (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 6 (Metal Slug 3 bootleg) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug X - Super Vehicle-001 (AzStar Soda Remix FC2 Version, hack) [Hack] + 2020 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug X - Super Vehicle-001 (NGM-2500)(NGH-2500) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Soldier Isaac II + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + Metamoqester (International) + 1995 + Banpresto / Pandorabox + + + + + + + + + + + + + + + + Metamorphic Force (ver AAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + Metamorphic Force (ver EAA - alternate) + 1993 + Konami + + + + + + + + + + + + + + + + + + Metamorphic Force (ver EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + Metamorphic Force (ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + Metamorphic Force (ver UAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + Meteor (bootleg of Asteroids) [Bootleg] + 1979 + bootleg + + + + + + + + + + + + Meteor (Hoei bootleg of Asteroids) [Bootleg] + 1979 + bootleg (Hoei) + + + + + + + + + + + + Meteorite (Proel bootleg of Asteroids) [Bootleg] + 1979 + bootleg (Proel) + + + + + + + + + + + + Meteorites (VGG bootleg of Asteroids) [Bootleg] + 1979 + bootleg (VGG) + + + + + + + + Metro-Cross (set 1) + 1985 + Namco + + + + + + + + + + + + + + + Metro-Cross (set 2) + 1985 + Namco + + + + + + + + + + + + + + + Mexico 86 (bootleg of Kick and Run) (set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (Japan) (bootleg of FD1094/8751 317-0157 set) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (Japan) (FD1094/8751 317-0157) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (set 3, World, FD1094/8751 317-0159) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (US) (bootleg of FD1094/8751 317-0158 set) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (US) (FD1094/8751 317-0158) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (World) (bootleg of FD1094/8751 317-0159 set) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (Japan) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (World) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mighty Guy + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Mighty Monkey + 198? + Universal Video Games + + + + + + + + + + + + + + + + + + Mighty Monkey (bootleg on Scramble hardware) [Bootleg] + 198? + bootleg + + + + + + + + + + + + + + + + Mighty Monkey (bootleg on Super Cobra hardware) [Bootleg] + 198? + bootleg + + + + + + + + + + + + + + + + Mighty Monkey (Kaina Games, bootleg on Scramble hardware) [Bootleg] + 198? + bootleg (Kaina Games) + + + + + + + + + + + + + + + + + + Mighty Warriors + 199? + Elettronica Video-Games S.R.L. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mighty! Pang (000925 Euro) + 2000 + Mitchell + + + + + + + + + + + + + + + + + Mighty! Pang (001010 Asia) + 2000 + Mitchell + + + + + + + + + + + + + + + + + Mighty! Pang (001010 Euro) + 2000 + Mitchell + + + + + + + + + + + + + + + + + Mighty! Pang (001010 USA) + 2000 + Mitchell + + + + + + + + + + + + + + + Mighty! Pang (001011 Japan Phoenix Edition) [Bootleg] + 2000 + bootleg + + + + + + + + + + + + + + + + + Mighty! Pang (001011 Japan) + 2000 + Mitchell + + + + + + + + + + + + + + + + + Mikie + 1984 + Konami + + + + + + + + + + + + + + + + + Mikie (High School Graffiti) + 1984 + Konami + + + + + + + + + + + + + + + + + Mille Miglia 2: Great 1000 Miles Rally (95/04/04) + 1995 + Kaneko + + + + + + + + + + + + + + + + + Mille Miglia 2: Great 1000 Miles Rally (95/05/24) + 1995 + Kaneko + + + + + + + + + + + + + + + + + Millipede + 1982 + Atari + + + + + + + + + + Minasanno Okagesamadesu! Daisugorokutaikai (MOM-001)(MOH-001) + 1990 + Monolith Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Minefield + 1983 + Stern + + + + + + + + + + + + + + Minesweeper + 1977 + Amutech + + + + + + + + Minesweeper (4-Player) + 1977 + Amutech + + + + + + + + Minivader + 1990 + Taito Corporation + + + + Minky Monkey + 1982 + Technos Japan / Roller Tron + + + + + + + + + + + + + + + + Minky Monkey (Japan) + 1982 + Technos Japan / Roller Tron + + + + + + + + + + + + + + + + Mirage Youjuu Mahjongden (Japan) + 1994 + Mitchell + + + + + + + + + + Mirai Ninja (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mirax (set 1) + 1985 + Current Technologies + + + + + + + + + + + + + + + + + + + Mirax (set 2) + 1985 + Current Technologies + + + + + + + + + + + + + + + + + + Miss Bingo + 1994 + Min Corp. + + + + + + + + + + Miss Bubble II + 1996 + Alpha Co. + + + + + + + + + + + + + + + + + Miss Mister World '96 (Nude) + 1996 + Comad + + + + + + + + + + + + + + Miss Pukman ('Made in Greece' Datamat bootleg) [Bootleg] + 1992 + bootleg (Datamat) + + + + + + + + + Miss Pukman ('Made in Greece' Triunvi bootleg, set 1) [Bootleg] + 1991 + bootleg (Triunvi) + + + + + + + + + Miss Pukman ('Made in Greece' Triunvi bootleg, set 2) [Bootleg] + 1991 + bootleg (Triunvi) + + + + + + + + + Miss Puzzle + 1994 + Min Corp. + + + + + + + + + + + + Miss Puzzle (Clone of Gumbo) + 1994 + Min Corp. + + + + + + + + + + Miss Puzzle (Nudes, less explicit) + 1994 + Min Corp. + + + + + + + + + + + + Miss Puzzle (Nudes, more explicit) [imperfect graphics] + 1994 + Min Corp. + + + + + + + + + + + + Miss World '96 (Nude) (set 2) + 1996 + Comad + + + + + + + + + + + + + + Miss World '96 (Nude) (set 3) + 1996 + Comad + + + + + + + + + + + + + + Miss World '96 (Nude) (set 4) + 1996 + Comad + + + + + + + + + + + + + + Miss World '96 (Nude) (set1) + 1996 + Comad + + + + + + + + + + + + + + Miss World 2002 + 2002 + Daigom + + + + + + + + + + + Mission 660 (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Mission 660 (Japan) + 1986 + Wood Place Inc. (Taito Corporation license) + + + + + + + + + + + + + + + + + + + + + + Mission 660 (US) + 1986 + Wood Place Inc. (Taito America Corporation license) + + + + + + + + + + + + + + + + + + + + + Mission Craft (version 2.4) + 2000 + Sun + + + + + + + + + + + + Mission Craft (version 2.7) + 2000 + Sun + + + + + + + + + + + + Mission-X (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mister Viking (315-5041) + 1984 + Sega + + + + + + + + + + + + + + + + + + + Mister Viking (315-5041, Japan) + 1984 + Sega + + + + + + + + + + + + + + + + + + + Miyasu Nonki no Quiz 18-Kin + 1992 + EIM + + + + + + + + + + + + + + + + Mizubaku Daibouken (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + Mobil Suit Gundam Final Shooting (Japan) + 1995 + Banpresto + + + + + + + + + + + + + + + + + + + + Mobile Suit Gundam + 1993 + Banpresto + + + + + + + + + + Mobile Suit Gundam (Japan) + 1993 + Banpresto + + + + + + + + + + Mobile Suit Gundam EX Revue + 1994 + Banpresto + + + + + + + + + + + + + + + + + + + Moeyo Gonta!! (Japan) + 1993 + Yanyaka + + + + + + + + + + + Mogu Chan (bootleg?) + 1982 + Orca (Eastern Commerce Inc. license) + + + + + + + + + + + + Mogura Desse [Konami test board] + 1991 + Konami + + + + + Mole Attack + 1982 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + Momoko 120% (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + Momoko 120% (English text) + 1986 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Momoko 120% (Japanese text) + 1986 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Money Puzzle Exchanger / Money Idol Exchanger + 1997 + Face + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Monkey Magic + 1979 + Nintendo + + + + + + + + + + + + + + + + + + + + Monky Elf (Korean bootleg of Avenging Spirit) [Bootleg, imperfect graphics] + 1990 + bootleg + + + + + + + + + + + + + + Monster Maulers (ver EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + Monster Slider (Japan) + 1997 + Visco / Datt Japan + + + + + + + + + + + + + Monsters World (bootleg of Super Pang) + 1994 + bootleg (TCH) + + + + + + + + + + + + Moon Alien + 1979 + Nichibutsu (Karateco license) + + + + + + + + + + + Moon Alien Part 2 + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + Moon Alien Part 2 (older version) + 1980 + Nichibutsu + + + + + + + + + + + + Moon Crest (Moon Cresta bootleg) [Bootleg] + 1980 + bootleg (SG-Florence) + + + + + + + + + + Moon Cresta (bootleg set 1) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Moon Cresta (bootleg set 2) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Moon Cresta (bootleg set 3) [Bootleg] + 1980 + bootleg (Jeutel) + + + + + + + + + + + + Moon Cresta (bootleg set 4) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Moon Cresta (Electrogame S.A. Spanish bootleg) [Bootleg] + 1980 + bootleg (Electrogame S.A.) + + + + + + + + + + + + + + + + Moon Cresta (Galaxian hardware) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Moon Cresta (Gremlin) + 1980 + Gremlin + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu UK) + 1980 + Nichibutsu UK + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu UK, unencrypted) + 1980 + Nichibutsu UK + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu USA, encrypted) + 1980 + Nichibutsu USA + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu USA, unencrypted) + 1980 + Nichibutsu USA + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu, old rev) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + Moon Cresta (Petaco S.A. Spanish bootleg) [Bootleg] + 1980? + bootleg (Petaco S.A.) + + + + + + + + + + + + + + + + Moon Cresta (SegaSA / Sonic) [Bootleg] + 1980 + Nichibutsu (Sonic license) + + + + + + + + + + + + + + + + Moon Patrol + 1982 + Irem + + + + + + + + + + + + + + + + + + + + Moon Patrol (Williams) + 1982 + Irem (Williams license) + + + + + + + + + + + + + + + + + + + + Moon Quasar + 1980 + Nichibutsu + + + + + + + + + + + + + + + + Moon Ranger (bootleg of Moon Patrol) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + + + + Moon Shuttle (Japan set 2) + 1981 + Nichibutsu + + + + + + + + + + + + + + + Moon Shuttle (Japan) + 1981 + Nichibutsu + + + + + + + + + + + + + + + Moon Shuttle (US, version A) + 1981 + Nichibutsu + + + + + + + + + + + + + + + Moon Shuttle (US? set 1) + 1981 + Nichibutsu + + + + + + + + + + + + + + + Moon Shuttle (US? set 2) + 1981 + Nichibutsu + + + + + + + + + + + + + + + Moon War (Moon Cresta bootleg) [Bootleg] + 198? + bootleg + + + + + + + + + + + + + + Moon War (prototype on Frenzy hardware) [Prototype] + 1981 + Stern Electronics + + + + + + + + + + + + Moonwar + 1981 + Stern + + + + + + + + + + + + Moonwar (older) + 1981 + Stern + + + + + + + + + + + + More More + 1999 + SemiCom / Exit + + + + + + + + + + + + + More More Plus + 1999 + SemiCom / Exit + + + + + + + + + + + + + Moriguchi Hiroko no Quiz de Hyuu!Hyuu! (Ver 2.2J 1995/05/25) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Nifty Kombo 666, hack) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Nifty Kombo, hack) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + + + Mortal Kombat (prototype, rev 4.0 07/14/92) [Prototype] + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (prototype, rev 8.0 07/21/92) [Prototype] + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (prototype, rev 9.0 07/28/92) [Prototype] + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 1.0 08/09/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 2.0 08/18/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 3.0 08/31/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 4.0 09/28/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 4.0 T-Unit 02/11/93) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 5.0 T-Unit 03/19/93) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Turbo 3.0 08/31/92, hack) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Turbo 3.1 09/09/93, hack) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Turbo Ninja T-Unit 03/19/93, hack) [Hack] + 1992 + Hack + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Yawdim bootleg, set 1) [Bootleg] + 1992 + bootleg (Yawdim) + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Yawdim bootleg, set 2) [Bootleg] + 1992 + bootleg (Yawdim) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Yawdim bootleg, set 3) [Bootleg] + 1992 + bootleg (Yawdim) + + + + + + + + + + + + + + + + + + + + Mortal Kombat (Yawdim bootleg, set 4) [Bootleg] + 1992 + bootleg (Yawdim) + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 1 chip label p4.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 1.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 2.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 2.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L1.1) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L1.4) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L2.0) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L2.1) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.0) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.1 (European)) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.1) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.2 (European)) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L4.2, hack) [Hack] + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L9.1, hack) [Hack] + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II Challenger (hack) [Hack] + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II Plus (Beta 2, Hack) + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II Ultimate Tournament Edition (hack, V5.0.053) [Hack] + 2014 + hack + + + + + + + + + + + + + + + + + + + + + + + Mosaic + 1990 + Space + + + + + + + + + + + + + Mosaic (F2 System) + 1999 + F2 System + + + + + + + + + + + + + Mosaic (Fuuki) + 1990 + Space (Fuuki license) + + + + + + + + + + + + + MotoRace USA + 1983 + Irem (Williams license) + + + + + + + + + + + + + + + + + Motos + 1985 + Namco + + + + + + + + + + + + + MotoTour / Zippy Race (Tecfri license) + 1983 + Irem (Tecfri license) + + + + + + + + + + + + + + + + + Moune Creste (Jeutel French Moon Cresta bootleg) [Bootleg] + 1980 + bootleg (Jeutel) + + + + + + + + + + + + Mouse Shooter GoGo + 1995 + Metro + + + + + + + + + + + Mouser + 1983 + UPL + + + + + + + + + + + + + Mouser (Cosmos) + 1983 + UPL (Cosmos license) + + + + + + + + + + + + + Mr. Dig + 2000 + Sun + + + + + + + + Mr. Do! + 1982 + Universal + + + + + + + + + + + + + + + + + + Mr. Do! (bootleg) [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + + + + Mr. Do! (bugfixed) + 1982 + Universal (Taito license) + + + + + + + + + + + + + + + + + + Mr. Do! (Fabremar bootleg) [Bootleg] + 1982 + Bootleg (Fabremar) + + + + + + + + + + + + + + + + + + Mr. Do! (prototype) [Prototype] + 1982 + Universal + + + + + + + + + + + + + + + + + + Mr. Do! (Taito license) + 1982 + Universal (Taito license) + + + + + + + + + + + + + + + + + + Mr. Do's Wild Ride + 1984 + Universal + + + + + + + + + + + + + + + Mr. Do's Castle (set 1) + 1983 + Universal + + + + + + + + + + + + + + + Mr. Du! [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + + + + Mr. Goemon (Japan) + 1986 + Konami + + + + + + + + + + + Mr. HELI no Dai-Bouken + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + Mr. Jong (Japan) + 1983 + Kiwako + + + + + + + + + + + Mr. Kicker (F-E1-16-010 PCB) + 2001 + SemiCom + + + + + + + Mr. Kougar + 1984 + ATW + + + + + + + + + + + Mr. Kougar (bootleg set 1) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + Mr. Kougar (bootleg set 2) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + Mr. Kougar (earlier) + 1983 + ATW + + + + + + + + + + + Mr. Lo! [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + + + Mr. TNT + 1982 + Telko + + + + + + + + + + + + + Mr.Do's Nightmare (hack by Krazy Ivan) + 2013 + Krazy Ivan + + + + + + + + + + + MS Pacman + 1980 + Namco + + + + + + + + + + + + + + + + Ms. Pac Attack + 1980 + hack + + + + + + + + + + + + + + + + Ms. Pac-Man ('Made in Greece' bootleg, set 1) [Bootleg] + 198? + bootleg + + + + + + + + + Ms. Pac-Man ('Made in Greece' bootleg, set 2) [Bootleg] + 198? + bootleg + + + + + + + + + Ms. Pac-Man (bootleg, encrypted) + 1981 + bootleg + + + + + + + + + + + + + + + Ms. Pac-Man (bootleg, set 1) + 1981 + bootleg + + + + + + + + + + + + + + + Ms. Pac-Man (bootleg, set 2) + 1981 + bootleg + + + + + + + + + + + + + Ms. Pac-Man (Marti Colls bootleg) + 1981 + bootleg (Marti Colls) + + + + + + + + + + + + + + + Ms. Pac-Man (with speedup hack) + 1980 + Midway + + + + + + + + + + + + + + + + Ms. Pac-Man Heart Burn + 1980 + hack (Two-Bit Score) + + + + + + + + + + + + + + + + Ms. Pac-Man Plus + 1981 + hack + + + + + + + + + + + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.00) + 2000 + Namco / Cosmodog + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.01) + 2000 + Namco / Cosmodog + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.02) + 2000 + Namco / Cosmodog + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.03) + 2000 + Namco / Cosmodog + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.04) + 2000 + Namco / Cosmodog + + + + + Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.08) + 2000 + Namco / Cosmodog + + + + + Ms. Pacman Champion Edition / Super Zola Pac Gal + 1995 + hack + + + + + + + + + Ms. Pacman Champion Edition / Zola-Puc Gal + 1995 + hack + + + + + + + + + MTV Rock-N-Roll Trivia (Part 2) + 1986 + Triumph Software Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + Mug Smashers + 1990? + Electronic Devices Italy / 3D Games England + + + + + + + + + + + + + + + + + + MuHanSeungBu (SemiCom Baseball) (Korea) + 1997 + SemiCom + + + + + + + + + + + + + + + + + + + + + Multi 5 / New Multi Game 5 (set 1) + 1998 + Yun Sung + + + + + + + + + + + + + + + + + + + + Multi 5 / New Multi Game 5 (set 2) + 1997 + Yun Sung + + + + + + + + + + + + + + + + + + + + Multi 5 / New Multi Game 5 (set 3, earlier) + 1997 + Yun Sung + + + + + + + + + + + + + + + + + + + + Multi Champ (Korea, older) + 1999 + ESD + + + + + + + + + + + + + + + + + + + + Multi Champ (World) + 1999 + ESD + + + + + + + + + + + + + + + + + + + + Multi Champ (World, older) + 1999 + ESD + + + + + + + + + + + + + + + + + + + + Multi Champ Deluxe (ver. 0106, 06/01/2000) + 2000 + ESD + + + + + + + + + + + + + Multi Champ Deluxe (ver. 1126, 26/11/1999) + 1999 + ESD + + + + + + + + + + + + + Multi Game '96 (Italy) + 1996 + Barko Corp + + + + + + + + + + + Multi Wars (bootleg of UniWar S) + 1980 + bootleg (Gayton Games) + + + + + + + + + + + + + + Munch Mobile (US) + 1983 + SNK (Centuri license) + + + + + + + + + + + + + + + Muscle Bomber - the body explosion (930713 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Muscle Bomber Duo - heat up warriors (931206 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Muscle Bomber Duo - ultimate team battle (931206 World) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Music Ball + 1988 + Tecfri / Desystem S.A. + + + + + + + + + + + + + Mustache Boy (Italy) + 1987 + Seibu Kaihatsu (IG SPA licence) + + + + + + + + + + + + + + + + + + Mustache Boy (Japan) + 1987 + Seibu Kaihatsu (March license) + + + + + + + + + + + + + + + + + + Mustafa and 40 Thieves (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + Mutant Fighter (World ver EM-2) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Mutant Fighter (World ver EM-3) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Mutant Fighter (World ver EM-4) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Mutant Fighter (World ver EM-5) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Mutant Night + 1987 + UPL + + + + + + + + + + + + + + + + Mutant Night (Japan) + 1987 + UPL (Kawakus license) + + + + + + + + + + + + + + + + Mutation Nation (NGM-014)(NGH-014) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MVP (set 1, Japan, FD1094 317-0142 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + MVP (set 1, Japan, FD1094 317-0142) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MVP (set 2, US, FD1094 317-0143 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + MVP (set 2, US, FD1094 317-0143) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + MX5000 + 1987 + Konami + + + + + + + My Hero (bootleg, 315-5132 encryption) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + My Hero (Korea) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + My Hero (US, not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + Mysterious Stones - Dr. John's Adventure + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + Mysterious Stones - Dr. Kick in Adventure + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + Mysterious Stones - Dr. Kick in Adventure (Itisa PCB) + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + Mystic Riders (bootleg?) + 1992 + Irem + + + + + + + + + + + + + + + + + + Mystic Riders (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + Mystic Warriors (ver AAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Mystic Warriors (ver AAB) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Mystic Warriors (ver EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Mystic Warriors (ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Mystic Warriors (ver UAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + NAM-1975 (NGM-001)(NGH-001) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Naname de Magic! + 1994 + Atlus + + + + + + + Narc (rev 1.80) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 2.00) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 3.20) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 4.00) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 6.00) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 7.00) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nastar (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + Nastar Warrior (US) + 1988 + Taito America Corporation + + + + + + + + + + + + NATO Defense + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + NATO Defense (alternate mazes) + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + Naughty Boy + 1982 + Jaleco + + + + + + + + + + + + + + + + + + + + + Naughty Boy (bootleg, set 1) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + Naughty Boy (bootleg, set 2) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + Naughty Boy (Cinematronics) + 1982 + Jaleco (Cinematronics license) + + + + + + + + + + + + + + + + + + + + + Naughty Mouse (set 1) + 1981 + Amenip (Palcom Queen River) + + + + + + + + + + + + + + + + + + + Naughty Mouse (set 2) + 1981 + Amenip Nova Games Ltd. + + + + + + + + + + + + + + + + + + + Navarone + 1980 + Namco + + + + + + NBA Hangtime (ver L1.1 4/16/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (ver L1.2 8/29/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (ver L1.3 10/10/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (ver M1.1 4/16/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (ver M1.2 8/29/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (ver M1.3 10/10/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam (rev 1.00 2/1/93) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam (rev 2.00 2/10/93) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam (rev 3.01 4/07/93) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam T.E. Nani Edition (rev 5.2 8/11/95, prototype) [Prototype] + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 1.0 1/17/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 2.0 1/28/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 2.1 2/06/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 3.0 2/26/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 3.0 3/04/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 4.0 3/03/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 4.0 3/23/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + NBA Maximum Hangtime (ver L0.9 10/30/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Maximum Hangtime (ver L1.0 11/08/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Maximum Hangtime (ver L1.03 06/09/97) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Maximum Hangtime (ver M1.0 11/08/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nebulas Ray (Japan, NR1) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + Nebulas Ray (World, NR2) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + Nebulous Bee [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Nekketsu Kouha Kunio-kun (Japan bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nekketsu Kouha Kunio-kun (Japan) + 1986 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nekketsu Koukou Dodgeball Bu (Japan) + 1987 + Technos Japan + + + + + + + + + + + + + + Nekketsu Koukou Dodgeball Bu (Japan, bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + Nemesis (ROM version) + 1985 + Konami + + + + + + + + + + + + + + Nemesis (World?, ROM version) + 1985 + Konami + + + + + + + + + + + + + + Nemo (90 11 09 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Nemo (90 11 20 Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nemo (90 11 30 etc) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + Neo 2500 Demo [Demo] + 2004 + blastar@gmx.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Black Tiger Demo [Demo, Homebrew] + 2020 + OzzyOuzo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Bomberman + 1997 + Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo CastleVania Demo [Homebrew] + 2004 + Barf/BarfHappy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Drift Out - New Technology + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Geo CDZ system [System - media selected seperately] + 1996 + SNK + + + + + Neo Mr. Do! + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo No Panepon (beta) [Homebrew] + ???? + blastar@gmx.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Pong (ver 1.0) [Homebrew] + 2002 + Neo Dev Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Pong (ver 1.1) [Homebrew] + 2002 + Neo Dev Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Super Mario Bros Demo 0.01! [Demo, Homebrew] + 2020 + OzzyOuzo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo System Check (ver 1.0b) [Demo] + ???? + blastar@gmx.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Thunder [Homebrew, sebastianmihai.com] + 2012 + Sebastian Mihai + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Turf Masters / Big Tournament Golf + 1996 + Nazca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo-Geo Cup '98 - The Road to the Victory + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NeoGeo 2-Player Tetris [Homebrew] + 2013 + Crim/Stephen + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NeoGeo 3D! Demo [Homebrew] + 2012 + Oxygene + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NeoTRIS (Free Beta 2 Ver. 202009) [Homebrew] + 2020 + Chipsonsteroids + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Net Wars + 1983 + Orca (Esco Trading Co license) + + + + + + + + + + + + + Nettou! Gekitou! Quiztou!! (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + + New Atomic Punk - Global Quest (US) + 1992 + Irem America + + + + + + + + + + + New Cross Pang + 1999 + F2 System + + + + + + + + + New Fantasia (1994 copyright) + 1995 + Comad / New Japan System + + + + + + + + + + + + + + + + New Fantasia (1995 copyright) + 1995 + Comad / New Japan System + + + + + + + + + + + + + + + + New Hidden Catch (World) / New Tul Lin Gu Lim Chat Ki '98 (Korea) (pcb ver 3.02) + 1999 + Eolith + + + + + + + + + + + + + + + + + New Puck-X + 1980 + hack + + + + + + + + + + + + + New Rally X + 1981 + Namco + + + + + + + + + + + + + + + + + New Sinbad 7 + 1983 + ATW USA, Inc. + + + + + + + + + + + + + + + New Tropical Angel + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + New Zero Team (V33 SYSTEM TYPE_B hardware) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + New Zero Team (V33 SYSTEM TYPE_B hardware, China?) + 1997 + Seibu Kaihatsu (Haoyunlai Trading Company license) + + + + + + + + + + + + + + + + Newpuc2 + 1980 + hack + + + + + + + + + + + + + + + + + + + Newpuc2b + 1980 + hack + + + + + + + + + + + + + + + + + + + News (set 1) + 1993 + Poby / Virus + + + + + + + News (set 2) + 1993 + Poby / Jeansole + + + + + + + Next Fase (bootleg of Phoenix) + 1980 + bootleg (Petaco S.A.) + + + + + + + + + + + + + + + + + NGEM2K (beta 2006-01-18) [Homebrew] + 2006 + homebrew + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NGF Transparency Demo [Homebrew, redarmor.net] + 2012 + CeL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nibbler (Olympia - rev 8) + 1983 + Rock-Ola (Olympia license) + + + + + + + + + + + + + + + + + + Nibbler (Pioneer Balloon conversion - rev 6) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + + Nibbler (rev 6) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + Nibbler (rev 7) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + Nibbler (rev 8) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + Nibbler (rev 9) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + Nibbler (rev 9, alternate set) + 1982 + Rock-Ola + + + + + + + + + + + + + + + + + + Night Driver + 1976 + Atari + + + + + + + + + + + Night Slashers (Japan Rev 1.2, DE-0397-0 PCB) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Night Slashers (Korea Rev 1.3, DE-0397-0 PCB) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Night Slashers (Over Sea Rev 1.2, DE-0397-0 PCB) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Night Slashers (US Rev 1.2, DE-0395-1 PCB) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Night Star (DECO Cassette) (US) (set 1) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Star (DECO Cassette) (US) (set 2) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Striker (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Striker (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Striker (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950302 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950316 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950403 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950403 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950406 USA Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors - darkstalkers' revenge (950406 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Nightmare in the Dark + 2000 + Eleven / Gavaking + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nightmare in the Dark (bootleg) [Bootleg] + 2001 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja (315-5102) + 1985 + Sega + + + + + + + + + + + + + + + + + + Ninja Baseball Batman (One Key Edition, Hack) [Hack] + 2020-09-06 + Hack + + + + + + + + + + + + + + + + + + Ninja Baseball Batman (US) + 1993 + Irem America + + + + + + + + + + + + + + + + + + Ninja Baseball Batman (World) + 1993 + Irem + + + + + + + + + + + + + + + + + + Ninja Combat (NGH-009) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Combat (NGM-009) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Commando + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Emaki (US) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Gaiden (US) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Ninja Kazan (World) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Master's - haoh-ninpo-cho + 1996 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Master's - haoh-ninpo-cho (Plus) [Hack] + 1996 + 007325 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Princess (315-5051, 64k Ver. bootleg?) [Bootleg] + 1985 + bootleg? + + + + + + + + + + + + + + + + + + + + + Ninja Princess (315-5051?, 128k Ver. bootleg?) [Bootleg] + 1985 + bootleg? + + + + + + + + + + + + + + + + + + + + Ninja Princess (315-5098, 128k Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + Ninja Princess (64k Ver. not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + Ninja Ryukenden (Japan, set 1) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Ninja Ryukenden (Japan, set 2) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Ninja Spirit (World) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja-Kid II / NinjaKun Ashura no Shou (set 1) + 1987 + UPL + + + + + + + + + + + + + + + + Ninja-Kid II / NinjaKun Ashura no Shou (set 2, bootleg?) + 1987 + UPL + + + + + + + + + + + + + + + Ninja-Kid II / NinjaKun Ashura no Shou (set 3, bootleg?) + 1987 + UPL + + + + + + + + + + + + + + + Ninja-Kid II / NinjaKun Ashura no Shou (set 4) + 1987 + UPL + + + + + + + + + + + + + + + + Ninjakun Majou no Bouken + 1984 + UPL (Taito license) + + + + + + + + + + + + + + + + Nitro Ball (World, set 1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Nitro Ball (World, set 2) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Noboranka (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + Noboranka (Japan, bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + Nostradamus + 1993 + Face + + + + + + + + + + + + + + + + + Nostradamus (Japan) + 1993 + Face + + + + + + + + + + + + + + + + + Nostradamus (Korea) + 1993 + Face + + + + + + + + + + + + + + + + + Nouryoku Koujou Iinkai + 1995 + Tecmo + + + + + + + + + + Nouryoku Koujou Iinkai (prototype) + 1995 + Tecmo + + + + + + + + + + + + + + + + + + Nova 2001 (Japan) + 1983 + UPL + + + + + + + + + + + + Nova 2001 (Japan, hack?) + 1983 + UPL + + + + + + + + + + + + Nova 2001 (US) + 1983 + UPL (Universal license) + + + + + + + + + + + + Numan Athletics (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + Numan Athletics (World) + 1993 + Namco + + + + + + + + + + + + + + + + Nunchackun + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + + + Nyan Nyan Panic (Japan) + 1988 + Konami + + + + + + + + + Ocean to Ocean (Medal) (DECO Cassette MD) (No.10/Ver.1,Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ocean to Ocean (Medal) (DECO Cassette MD) (No.10/Ver.6,US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oedo Fight (Japan, Bloodless version) + 1994 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oedo Fight (Japan, Bloodshed version) + 1994 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Offensive (Spanish bootleg of Scramble) [Bootleg] + 1981 + bootleg (Video Dens) + + + + + + + + + + + + + + + + + Oh My God! + 1993 + Atlus + + + + + + + Oishii Puzzle Ha Irimasenka + 1993 + Sunsoft / Atlus + + + + + + + + + + + + + + Oli-Boo-Chu + 1981 + Irem / GDI + + + + + + + + + + + + + + + + + + + + + + + + Omega + 1986 + Nihon System + + + + + + + + + + + + + + + + + + Omega (earlier) + 1986 + Nihon System + + + + + + + + + + + + + + + + + + Omega [Bootleg] + 19?? + bootleg? + + + + + + + + + + + + Omega Fighter + 1989 + UPL + + + + + + + + + + + Omega Fighter Special + 1989 + UPL + + + + + + + + + + + Omega Race (set 1) + 1981 + Midway + + + + + + + + + + + Omega Race (set 2) + 1981 + Midway + + + + + + + + + + + Omni [Bootleg] + 19?? + bootleg + + + + + + + + + + + One + Two + 1997 + Barko + + + + + + + + + One + Two (earlier) + 1997 + Barko + + + + + + + + + One Shot One Kill + 1996 + Promat + + + + + + + + + + + + + + + + + Oni - The Ninja Master (Japan) + 1995 + Banpresto / Pandorabox + + + + + + + + + + + + + + + + Onna Sansirou - Typhoon Gal + 1985 + Taito + + + + + + + + + + + + + + + + + + + + Onna Sansirou - Typhoon Gal (bootleg) [Bootleg] + 1985 + Taito + + + + + + + + + + + + + + + + + + + Oozumou - The Grand Sumo (DECO Cassette) (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Opa Opa (MC-8123, 317-0042) + 1987 + Sega + + + + + + + + + Opa Opa (Rev A, unprotected) + 1987 + Sega + + + + + + + + Operation Bear [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (Japan, SC) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (US, rev 1) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (World, rev 1) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Operation Wolf (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + Operation Wolf (Japan, SC) + 1987 + Taito Corporation + + + + + + + + + + + + + Operation Wolf (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + Operation Wolf (World, set 1) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + Operation Wolf (World, set 2) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + Operation Wolf 3 (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + Operation Wolf 3 (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + Operation Wolf 3 (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + Orbitron + 19?? + Signatron USA + + + + + + + + + + + Orbs (10/7/94 prototype?) + 1994 + American Sammy + + + + + + + + + + + Ordyne (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ordyne (Japan, English Version) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ordyne (World) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend (V105, Korea) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend (V105, Taiwan) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V111, China) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V111, Korea) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V111, Taiwan) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V112 alt, China) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V112) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V112, China) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + Oriental Legend - Xi Yo Gi Shi Re Zuang (V126) + 1997 + IGS + + + + + + + + + + + + + + + + + + + + + Oriental Legend 2 (Korea) / Xi You Shi E Zhuan Super Plus (World, China, Japan, Hong Kong, Taiwan) (V203) [Incomplete Dump] + 2004 + IGS + + + + + + + + + + + + + + + + + + + Oriental Legend 2 (Korea) / Xi You Shi E Zhuan Super Plus (World, China, Japan, Hong Kong, Taiwan) (V205) [Incomplete Dump] + 2004 + IGS + + + + + + + + + + + + + + + + + + + Oriental Legend 2 (One Key Edition, Hack) [Hack, Incomplete Dump] + 2020-12-10 + Hack + + + + + + + + + + + + + + + + + + + Oriental Legend Special - Da Sheng Gui Lai (Hack) [Hack] + 2020-01-11 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend Special - Meng Xun Ling Shan (Hack) [Hack] + 2020-08-03 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend Special - Xi Yo Gi Shi Re Zuang Super (V100 alt, China) [Imperfect Protection Emulation] + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend Special - Xi Yo Gi Shi Re Zuang Super (V100, China) [Imperfect Protection Emulation] + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend Special - Xi Yo Gi Shi Re Zuang Super (V103, China, Tencent) (unprotected) + 2003 + IGS + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend Super (V101, Korea) [Imperfect Protection Emulation] + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Oriental Legend ZERO (Hack) [Hack] + 2019-06-06 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + Orius (ver UAA) + 1991 + Konami + + + + + + + + + + + + + + + + + + Osman (World) + 1996 + Mitchell + + + + + + + + + + + + Otto Project PZ (hack) + 2014 + Scott Lawrence + + + + + + + + + + + + + + + Out Run (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (deluxe sitdown earlier version) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (deluxe sitdown) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (deluxe sitdown) (Enhanced Edition v1.0.3) + 2013 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (deluxe sitdown) (Enhanced Edition v2.0.3) + 2013 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (Japan, deluxe sitdown, FD1089A 317-0019) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (sitdown/upright, Rev A) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (sitdown/upright, Rev B) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (sitdown/upright, Rev B) (Enhanced Edition v1.1.0) + 2017 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (sitdown/upright, Rev B) (Enhanced Edition v2.0.2) + 2017 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (sitdown/upright, Rev B) (Enhanced Edition v2.0.3) + 2017 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Zone + 1990 + Toaplan + + + + + + + + + + + + + + Out Zone (harder) + 1990 + Toaplan + + + + + + + + + + + + + + Out Zone (old set) + 1990 + Toaplan + + + + + + + + + + + + + + Out Zone (older set) + 1990 + Toaplan + + + + + + + + + + + + + + Out Zone (oldest set) + 1990 + Toaplan + + + + + + + + + + + + + + Out Zone (Zero Wing TP-015 PCB conversion) + 1990 + Toaplan + + + + + + + + + + + + + + OutRunners (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + OutRunners (US) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + OutRunners (World) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + Over Top + 1996 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ozma Wars (set 1) + 1979 + SNK + + + + + + + + + + + + + + + + + + + + Ozma Wars (set 2) + 1979 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + Ozon I + 1983 + Proma + + + + + + + + + P-47 - The Freedom Fighter (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + P-47 - The Freedom Fighter (Japan, Export) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + P-47 - The Phantom Fighter (World) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + P-47 Aces (ver 1.0) + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + P-47 Aces (ver 1.1) + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + P-GeMeni (060123) [Homebrew] + 2006 + blastar@gmx.net + + + + + + + + + + + + + + P.O.W. - Prisoners of War (US version 1) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + P.O.W. - Prisoners of War (US version 1, mask ROM sprites ) + 1988 + SNK + + + + + + + + + + + + + + Pac & Pal + 1983 + Namco + + + + + + + + + + + + + Pac & Pal (older) + 1983 + Namco + + + + + + + + + + + + + Pac Man (FAMARE S.A. bootleg of Puck Man) [Bootleg] + 1980 + bootleg (FAMARE S.A.) + + + + + + + + + + + + + + + + + + + Pac Man (U.G. bootleg of Puck Man) [Bootleg] + 1980 + bootleg (U.G.) + + + + + + + + + + + + + + + + + + + Pac-Gal + 1981 + hack + + + + + + + + + + + + + + + + Pac-Land (Bally-Midway) + 1984 + Namco (Bally Midway license) + + + + + + + + + + + + + + + + + + + + + + Pac-Land (Japan new) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + Pac-Land (Japan old) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + Pac-Land (Japan older) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + Pac-Land (Midway) + 1984 + Namco (Bally Midway license) + + + + + + + + + + + + + + + + + + + + + + Pac-Land (World) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + Pac-Man & Chomp Chomp + 1983 + Namco + + + + + + + + + + + + + Pac-Man (bootleg, Video Game SA) + 1980 + bootleg (Video Game SA) + + + + + + + + + + + + + + + + + + + Pac-Man (Calfesa, Spanish bootleg on Galaxian hardware) [Bootleg] + 1981 + bootleg (Calfesa) + + + + + + + + + + + + + + + Pac-Man (Galaxian hardware, set 1) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + Pac-Man (Galaxian hardware, set 2) [Bootleg] + 1981 + bootleg + + + + + + + + + + Pac-Man (Hearts) + 1981 + hack + + + + + + + + + + + + + + + + + + + Pac-Man (Midway) + 1980 + Namco (Midway license) + + + + + + + + + + + + + Pac-Man (Midway, harder) + 1981 + [Namco] (Midway license) + + + + + + + + + + + + + Pac-Man (Midway, with speedup hack) + 1980 + Namco (Midway license) + + + + + + + + + + + + + Pac-Man (SegaSA / Sonic) + 1980 + Namco (Sonic license) + + + + + + + + + + + + + + + + + + + Pac-Man (Video Dens, Spanish bootleg on Galaxian hardware) [Bootleg] + 1981 + bootleg (Video Dens) + + + + + + + + + + + + + + + Pac-Man - 25th Anniversary Edition (Rev 2.00) + 2005 + Namco / Cosmodog + + + + + Pac-Man - 25th Anniversary Edition (Rev 3.00) + 2006 + Namco / Cosmodog + + + + + Pac-Man Plus + 1982 + [Namco] (Midway license) + + + + + + + + + + + + + Pac-Mania + 1987 + Namco + + + + + + + + + + + + + + + + Pac-Mania (111187 sound program) + 1987 + Namco + + + + + + + + + + + + + + + + Pac-Mania (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + Pachinko Sexy Reaction (Japan) + 1998 + Sammy + + + + + + + + + + + + + + + + + + Pachinko Sexy Reaction 2 (Japan) + 1999 + Sammy + + + + + + + + + + + + Pack'n Bang Bang (Prototype) + 1994 + Kaneko + + + + + + + + + + + + + + + Packetman (bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + Pacman Club / Club Lambada (Argentina) + 1989 + Miky SRL + + + + + + + + + + + + Pacu-Man (Spanish bootleg of Puck Man) [Bootleg] + 1980 + bootleg (Recreativos Franco S.A.) + + + + + + + + + + + + + + + + + + + Paddle 2 (bootleg on Block hardware) [Bootleg] + 1986 + bootleg + + + + + + + + + + + Paddle Mania + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + Pae Wang Jeon Seol / Legend of a Warrior (Korean censored Samurai Shodown IV) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Paint Roller + 1981 + bootleg + + + + + + + + + + + + + + + + + + + Pairs (V1, 09/07/94) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Pairs (V1.2, 09/30/94) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Pairs Love + 1991 + Athena + + + + + + + + Pairs Redemption (V1.0, 10/25/94) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + Pajaro del Espacio (Spanish bootleg of UniWar S) [Bootleg] + 1980 + bootleg (PSV S.A.) + + + + + + + + + + + + + + + + Palamedes (Japan) + 1990 + Taito Corporation + + + + + + Palamedes (US) + 1990 + Hot-B Co., Ltd. + + + + + + Pandora's Palace + 1984 + Konami / Interlogic + + + + + + + + + + + + + + + + + + Pang (bootleg, set 1) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + Pang (bootleg, set 2) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + Pang (bootleg, set 4) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + Pang (bootleg, set 5) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + Pang (bootleg, set 6) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + Pang (World) + 1989 + Mitchell + + + + + + + + + + + + Pang Pang + 1994 + Dong Gue La Mi Ltd. + + + + + + + + + + + + + + + Pang Pom's + 1992 + Metro + + + + + + + + + + + + + + + Pang Pom's (Mitchell) + 1992 + Metro (Mitchell license) + + + + + + + + + + + + + + + Pang Pom's (Nova) + 1992 + Nova + + + + + + + + + + + + + + + Pang! 3 (950511 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Pang! 3 (950511 Euro, alt) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + + + + + + + Pang! 3 (950601 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Pang! 3 (bootleg set 1, 950511 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Pang! 3 (bootleg set 2, 950601 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + + + + Pang! 3 (bootleg set 3, 950511 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + Pang! 3 (bootleg set 4, 950511 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Pang! 3 (bootleg set 5, 950601 Euro) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Pang! 3: Kaitou Tachi no Karei na Gogo (950511 Japan) + 1995 + Mitchell + + + + + + + + + + + + + + + + + + + + Panic Bomber + 1994 + Eighting / Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Panic Street (Japan) + 1999 + Kaneko + + + + + + + + + + + + + + Paparazzi + 1996 + Yun Sung + + + + + + + + + + + + + + + + + + Parallel Turn + 1984 + Jaleco + + + + + + + + + + + + + + + + + + + + + Parodius DA! (Asia) + 1990 + Konami + + + + + + + + + + + Parodius DA! (Japan) + 1990 + Konami + + + + + + + + + + + Parodius DA! (World, set 1) + 1990 + Konami + + + + + + + + + + + Parodius DA! (World, set 2) + 1990 + Konami + + + + + + + + + + + Party Time: Gonta the Diver II / Ganbare! Gonta!! 2 (World Release) + 1995 + Mitchell + + + + + + + + + + + + Pasha Pasha 2 [Incomplete sound] + 1998 + Dong Sung + + + + + + + + + + + + Pasha Pasha Champ Mini Game Festival + 1997 + Dongsung + + + + + + + + + + + + + + + Pass + 1992 + Oksan + + + + + + + + + + + + + Passing Shot (Japan, 4 Players, FD1094 317-0070 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + Passing Shot (Japan, 4 Players, FD1094 317-0070) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + Passing Shot (Japan, 4 Players, System 16A, FD1094 317-0071) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + Passing Shot (World, 2 Players, FD1094 317-0080 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + Passing Shot (World, 2 Players, FD1094 317-0080) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + Passing Shot (World, 4 Players, FD1094 317-0074 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + Passing Shot (World, 4 Players, FD1094 317-0074) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + Pastel Island (Japan, prototype) + 1993 + Visco + + + + + + + + + + + + + + + + + + Pata Pata Panic + 1993 + Atlus + + + + + + + + + + + + + + + + Peek-a-Boo! + 1993 + Jaleco + + + + + + + + + + + Peek-a-Boo! (North America, ver 1.0) + 1993 + Jaleco + + + + + + + + + + + Penfan Girls - Step1. Mild Mind (set 1) + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Penfan Girls - Step1. Mild Mind (set 2) + 1999 + Eolith + + + + + + + + + + + + + + + + + + + + + + + Pengo (bootleg) [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + Pengo (set 1 rev C, encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Pengo (set 2, encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Pengo (set 2, rev A, not encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Pengo (set 3, not encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Pengo (set 4, encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Pengo (set 5, encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + Penguin Adventure (bootleg of MSX version) + 1988 + bootleg (Screen) / Konami + + + + + + + + Penguin Brothers (Japan) + 2000 + Subsino + + + + + + + + + Penguin-Kun Wars (Japan) + 1985 + UPL + + + + + + + + + + + Penguin-Kun Wars (US) + 1985 + UPL + + + + + + + + + + + Penta [Bootleg] + 1982 + Bootleg + + + + + + + + + + + + + + + + + Perfect Billiard + 1987 + Nihon System + + + + + + + + + + + + + + + + + + Perfect Billiard (MC-8123, 317-5008) + 1987 + Nihon System + + + + + + + + + + + + + + + + + + + Perfect Soldiers (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + Performan (Japan) + 1985 + Toaplan / Data East Corporation + + + + + + + + + + + + + + + + + + Performan (US) + 1985 + Toaplan / Data East USA + + + + + + + + + + + + + + + + + + Pest Place [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + Peter Pan (bootleg of Hook) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + Peter Pepper's Ice Cream Factory (DECO Cassette) (US) (set 1) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Peter Pepper's Ice Cream Factory (DECO Cassette) (US) (set 2) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pettan Pyuu (Japan) + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + Phantasm (Japan) + 1990 + Jaleco + + + + + + + + + + + + + + + + Phelios + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Phelios (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Phoenix (Amstar) + 1980 + Amstar + + + + + + + + + + + + + + + + + Phoenix (Amstar, set 2) + 1980 + Amstar + + + + + + + + + + + + + + + + + Phoenix (Assa, Spanish bootleg) + 1981 + bootleg (Assa) + + + + + + + + + + + + + + + + + Phoenix (Centuri, set 1) + 1980 + Amstar (Centuri license) + + + + + + + + + + + + + + + + + Phoenix (Centuri, set 2) + 1980 + Amstar (Centuri license) + + + + + + + + + + + + + + + + + Phoenix (D&L bootleg) + 1980 + bootleg (D&L) + + + + + + + + + + + + + + + + + Phoenix (G. Universal Video bootleg) + 1981 + bootleg? (G. Universal Video) + + + + + + + + + + + + + + + + + Phoenix (Hellomat Automaten bootleg) + 1981 + bootleg (Hellomat Automaten) + + + + + + + + + + + + + + + + + Phoenix (IDI bootleg) + 1981 + bootleg (IDI) + + + + + + + + + + + + + + + + Phoenix (Irecsa / G.G.I Corp, set 1) + 1981 + bootleg? (Irecsa / G.G.I Corp) + + + + + + + + + + + + + + + + + Phoenix (Irecsa / G.G.I Corp, set 2) + 1981 + bootleg? (Irecsa / G.G.I Corp) + + + + + + + + + + + + + + + + + + + + Phoenix (Irecsa / G.G.I Corp, set 3) + 1981 + bootleg? (Irecsa / G.G.I Corp) + + + + + + + + + + + + + + + + + Phoenix (Irecsa / G.G.I Corp, set 4) + 1981 + bootleg? (Irecsa / G.G.I Corp) + + + + + + + + + + + + + + + + Phoenix (Sonic, Spanish bootleg) + 1981 + bootleg (Sonic) + + + + + + + + + + + + + + + + + Phoenix (T.P.N. bootleg) + 1980 + bootleg (T.P.N.) + + + + + + + + + + + + + + + + + Phoenix (Taito Japan) + 1980 + Amstar (Taito Japan license) + + + + + + + + + + + + + + + + + Phoenix (Taito) + 1980 + Amstar (Taito license) + + + + + + + + + + + + + + + + + Phoenix Part 2 [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + Photo Finish (bootleg?) + 1991 + Jaleco / Casio + + + + + + + + + + + + + + Photo Y2K / Real and Fake (V102, Japan) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Photo Y2K / Real and Fake (V103, Japan) + 1999 + IGS + + + + + + + + + + + + + + + + + + + + + Photo Y2K / Real and Fake (V104) + 1999 + IGS + + + + + + + + + + + + + + + + + + Photo Y2K / Real and Fake (V105, China) + 1999 + IGS + + + + + + + + + + + + + + + + + + Photo Y2K 2 (3-in-1, V100, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Photo Y2K 2 (3-in-1, V102, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + + + + + Photo Y2K 2 (V100, japan) + 2001 + IGS Alta Co., Ltd. + + + + + + + + + + + + + + + + + + Photo Y2K 2 (VM101XX, China) + 2001 + IGS + + + + + + + + + + + + + + + + + + Phozon (Japan) + 1983 + Namco + + + + + + + + + + + + + + + + + + + Phozon (Sidam) + 1983 + Namco (Sidam license) + + + + + + + + + + + + + + + + + + + Pickin' + 1983 + Valadon Automation + + + + + + + + + + + + + Pinball Action (set 1) + 1985 + Tehkan + + + + + + + + + + + + + + + + + Pinball Action (set 2, encrypted) + 1985 + Tehkan + + + + + + + + + + + + + + + + + Pinball Action (set 3, encrypted) + 1985 + Tehkan + + + + + + + + + + + + + + + + Pinball Action (set 4, encrypted) + 1985 + Tehkan + + + + + + + + + + + + + + + + + Pinball Action (Tecfri License) + 1985 + Tehkan + + + + + + + + + + + + + + + + + + Pinbo (set 1) + 1984 + Jaleco + + + + + + + + + + + + + + Ping Pong Masters '93 + 1993 + Electronic Devices S.R.L. + + + + + + + + + + Pioneer Balloon + 1982 + SNK + + + + + + + + + + + + + + + + + Pioneer Balloon (Rock-Ola license) + 1982 + SNK (Rock-Ola license) + + + + + + + + + + + + + + + + + Pipe Dream (Japan) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + + Pipe Dream (Taiwan) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + + Pipe Dream (US) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + + Pipe Dream (World) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + + Pipi & Bibis / Whoopee!! (prototype) [Prototype] + 1991 + Toaplan + + + + + + + + + + Pipi & Bibis / Whoopee!! (Teki Paki hardware) + 1991 + Toaplan + + + + + + + + Pipi & Bibis / Whoopee!! (Z80 sound cpu, set 1) + 1991 + Toaplan + + + + + + + + Pipi & Bibis / Whoopee!! (Z80 sound cpu, set 2) + 1991 + Toaplan + + + + + + + + Piranha + 1981 + GL (US Billiards License) + + + + + + + + + + + + + + + + + + + Piranha (hack) + 1981 + hack + + + + + + + + + + + + + + + Piranha (older) + 1981 + GL (US Billiards License) + + + + + + + + + + + + + + + + + + + Pirate Pete + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Pirate Ship Higemaru + 1984 + Capcom + + + + + + + + + + + + + + + Pirates (set 1) + 1994 + NIX + + + + + + + + + + + + + + Pirates (set 2) + 1995 + NIX + + + + + + + + + + + + + + Pisces + 19?? + Subelectro + + + + + + + + + + + + + + Pisces (bootleg) [Bootleg] + 19?? + bootleg + + + + + + + + + + + + + + Pistol Daimyo no Bouken (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + Pit & Run - F-1 Race (set 1) [Missing analog sounds and some gfx effects] + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Pit & Run - F-1 Race (set 2) [Missing analog sounds and some gfx effects] + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Pit Fighter (rev 3) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pit Fighter (rev 9) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pitapat Puzzle + 1997 + F2 System + + + + + + + + + + + + + Pitfall II (315-5093) + 1985 + Sega + + + + + + + + + + + + + + + + Pitfall II (315-5093, Flicky Conversion) + 1985 + Sega + + + + + + + + + + + + + + + + Pitfall II (not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + PK Scramble + 1993 + Cosmo Electronics Corporation + + + + + + + Planet Probe (prototype?) + 1985 + Crux / Kyugo? + + + + + + + + + + + + + + + + + Play Girls + 1992 + Hot-B Co., Ltd. + + + + + + Play Girls 2 + 1993 + Hot-B Co., Ltd. + + + + + + Play Girls 2 (bootleg) [Bootleg] + 1993 + bootleg + + + + + + + + Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219) + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pleiads (bootleg set 1) + 1981 + bootleg + + + + + + + + + + + + + + + + + Pleiads (bootleg set 2) + 1981 + bootleg (ESG) + + + + + + + + + + + + + + + + + Pleiads (Centuri) + 1981 + Tehkan (Centuri license) + + + + + + + + + + + + + + + + + Pleiads (Irecsa) + 1981 + bootleg? (Irecsa) + + + + + + + + + + + + + + + + + Pleiads (Niemer S.A.) + 1981 + Niemer S.A. + + + + + + + + + + + + + + + + + Pleiads (Spanish bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + Pleiads (Tehkan) + 1981 + Tehkan + + + + + + + + + + + + + + + + + Plotting (US) + 1989 + Taito America Corporation + + + + + + + Plotting (World set 1) + 1989 + Taito Corporation Japan + + + + + + + Plotting (World set 2, protected) + 1989 + Taito Corporation Japan + + + + + + + Plotting (World set 3, earliest version) + 1989 + Taito Corporation Japan + + + + + + + Plump Pop (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Plus Alpha + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + Pnickies (940608 Japan) + 1994 + Compile (Capcom license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pochi and Nyaa (Ver 2.00) + 2003 + Aiky / Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pochi and Nyaa (Ver 2.02) + 2003 + Aiky / Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pocket Fighter (970904 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + Pocket Gal Deluxe (Asia v3.00) + 1993 + Data East Corporation + + + + + + + + + Pocket Gal Deluxe (Euro v3.00) + 1992 + Data East Corporation + + + + + + + + + Pocket Gal Deluxe (Japan v3.00) + 1993 + Data East Corporation (Nihon System license) + + + + + + + + + Pocket Gals V.I.P (set 1) + 1996 + ACE International / Afega + + + + + + + + + + Pocket Gals V.I.P (set 2) + 1996 + unknown + + + + + + + + Point Blank (World, GN2 Rev B, set 1) + 1994 + Namco + + + + + + + + + + + + + + + + + + Point Blank (World, GN2 Rev B, set 2) + 1994 + Namco + + + + + + + + + + + + + + + + + + Poitto! + 1993 + Metro / Able Corp. + + + + + + + + + + + Poitto! (revision C) + 1993 + Metro / Able Corp. + + + + + + + + + + + Poker Ladies + 1989 + Mitchell + + + + + + + + + + + + + Poker Ladies (Leprechaun ver. 401) + 1989 + Leprechaun + + + + + + + + + + + + + + + + Poker Ladies (Leprechaun ver. 510) + 1989 + Leprechaun + + + + + + + + + + + + + Poker Night [Homebrew] + ???? + Jeff Kurtz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pokonyan (Japan 940322) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Pollux (Japan, NTC license) + 1991 + Dooyong (NTC license) + + + + + + + + + + + + + + Pollux (set 1) + 1991 + Dooyong + + + + + + + + + + + + + + Pollux (set 2) + 1991 + Dooyong + + + + + + + + + + + + + + Pollux (set 3) + 1991 + Dooyong + + + + + + + + + + + + + + Pomping World (Japan) + 1989 + Mitchell + + + + + + + + + + + + Ponpoko + 1982 + Sigma Enterprises Inc. + + + + + + + + + + + + + + + + + Ponpoko (Venture Line) + 1982 + Sigma Enterprises Inc. (Venture Line license) + + + + + + + + + + + + + + + + + Poosho Poosho + 1999 + F2 System + + + + + + + + + + + Pootan [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + Pooyan + 1982 + Konami + + + + + + + + + + + + + + + + Pooyan (Stern) + 1982 + [Konami] (Stern license) + + + + + + + + + + + + + + + + Pop 'n Bounce / Gapporin + 1997 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pop Bingo + 1996 + Dooyong + + + + + + + + + + + + + Pop Flamer (bootleg on Naughty Boy PCB) + 1982 + Jaleco + + + + + + + + + + + + + + + + + + + + + Pop Flamer (hack?) + 1982 + Jaleco + + + + + + + + + + + + + Pop Flamer (not protected) + 1982 + Jaleco + + + + + + + + + + + + + Pop Flamer (protected) + 1982 + Jaleco + + + + + + + + + + + + + Pop'n Pop (Ver 2.07A 1998/02/09) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Pop'n Pop (Ver 2.07J 1998/02/09) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Pop'n Pop (Ver 2.07O 1998/02/09) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Pop's Pop's + 1999 + Afega + + + + + + + + + + Popeye (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + Popeye (Japan, Sky Skipper hardware) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + Popeye (Japan, Sky Skipper hardware, Older) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + Popeye (revision D not protected) + 1982 + Nintendo + + + + + + + + + + + + + + + + + Popeye (revision D) + 1982 + Nintendo + + + + + + + + + + + + + + + + + Popeye (revision F) + 1982 + Nintendo + + + + + + + + + + + + + + + + + Popeye-Man [Hack] + 1981 + hack + + + + + + + + + + + + + + + + + + + Popper + 1983 + Omori + + + + + + + + + + + + Porky + 1985 + Shinkai Inc. (Magic Eletronics Inc. license) + + + + + + + + Port Man + 1982 + Taito Corporation (Nova Games Ltd. license) + + + + + + + + + + + + + Port Man (bootleg on Moon Cresta hardware) [Bootleg] + 19?? + Nova Games Ltd + + + + + + + + + + + + Port Man (Japan) + 1982 + Taito Corporation + + + + + + + + + + + + + Pound for Pound (Japan) + 1990 + Irem + + + + + + + + + + + + + + + + + Pound for Pound (US) + 1990 + Irem America + + + + + + + + + + + + + + + + + Pound for Pound (World) + 1990 + Irem + + + + + + + + + + + + + + + + + Power Drift (Japan) [Select Auto-Center preset in Input Configuration] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Drift (World) [Select Auto-Center preset in Input Configuration] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Drift (World, Earlier) [Select Auto-Center preset in Input Configuration] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Drift (World, Rev A) [Select Auto-Center preset in Input Configuration] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Drive + 1986 + Bally Midway + + + + + + + + + + + + + + + Power Instinct (USA) + 1993 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + Power Instinct (USA, bootleg set 1) [Bootleg] + 1993 + Atlus + + + + + + + + + + + + + Power Instinct (USA, bootleg set 2) [Bootleg] + 1993 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Instinct (USA, bootleg set 3) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Instinct (USA, prototype) [Prototype] + 1993 + Atlus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power instinct 2 (Korea, ver. 94/04/08) + 1994 + Atlus + + + + + + + + + + + + + + + + + + + + + + + Power Instinct 2 (USA, ver. 94/04/08) + 1994 + Atlus + + + + + + + + + + + + + + + + + + + + + + + Power Spikes (Korea) + 1991 + Video System Co. + + + + + + + + + + + + Power Spikes (US) + 1991 + Video System Co. + + + + + + + + + + Power Spikes (World) + 1991 + Video System Co. + + + + + + + + + + + Power Spikes II (NGM-068) + 1994 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Surge + 1988 + Vision Electronics + + + + + + + + + + + + + + + Power Up Baseball (prototype) + 1996 + Midway / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Wheels (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Powered Gear - strategic variant armor equipment (940916 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Powered Gear - strategic variant armor equipment (941024 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Prehistoric Isle 2 + 1999 + Yumekobo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Prehistoric Isle in 1930 (Korea) + 1989 + SNK (Victor license) + + + + + + + + + + + + + Prehistoric Isle in 1930 (US) + 1989 + SNK of America + + + + + + + + + + + + + Prehistoric Isle in 1930 (World, bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Prehistoric Isle in 1930 (World, set 1) + 1989 + SNK + + + + + + + + + + + + + Prehistoric Isle in 1930 (World, set 2) + 1989 + SNK + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (Enhanced Edition v5 Final, Hack) [Hack, Hack only enable in Extra Hard] + 2019-12-29 + Hack + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, Europe) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, Hong Kong) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, Japan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, Korea) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, Taiwan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/21, USA) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, Europe) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, Hong Kong) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, Japan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, Korea) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, Taiwan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22, USA) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, Europe) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, Hong Kong) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, Japan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, Korea) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, Taiwan) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (ver. 95/03/22B, USA) + 1995 + BanPresto / Gazelle + + + + + + + + + + + + + + + + + + + + + Prime Time Fighter (Ver 2.1A 1993/05/21) (New Version) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Prime Time Fighter (Ver 2.1A 1993/05/21) (Old Version) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Primella + 1994 + Dooyong (NTC license) + + + + + + + + + + + Primo Demo [Homebrew] + 2013 + iocerom.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pro Bowling (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pro Soccer (DECO Cassette) (Japan) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pro Soccer (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pro Tennis (DECO Cassette) (Japan) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pro Tennis (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Progear (010117 Asia) + 2001 + Capcom / Cave + + + + + + + + + + + + + + + + + + + Progear (010117 USA) + 2001 + Capcom / Cave + + + + + + + + + + + + + + + + + + + Progear No Arashi (010117 Japan Phoenix Edition) [Bootleg] + 2001 + bootleg + + + + + + + + + + + + + + + + + + + Progear No Arashi (010117 Japan) + 2001 + Capcom / Cave + + + + + + + + + + + + + + + + + + + Progear No Arashi (010117 Japan, decrypted set) [Bootleg] + 2001 + bootleg + + + + + + + + + + + + + Progear(010117 USA Phoenix Edition) [Bootleg] + 2001 + bootleg + + + + + + + + + + + + + + + + + + + Progress + 1984 + Chuo Co. Ltd + + + + + + + + + + + + + + + + + + Progressive Music Trivia (Question set 1) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + Progressive Music Trivia (Question set 2) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + Progressive Music Trivia (Question set 3) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + + Progressive Music Trivia (Question set 4) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + + Project Neon (Caravan Edition, prealpha 0.4.19) [Demo] + 2019 + FULLSET + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Psychic 5 (Japan) + 1987 + Jaleco + + + + + + + + + + + + + Psychic 5 (World) + 1987 + Jaleco + + + + + + + + + + + + + Psycho Soldier (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Psycho Soldier (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (Japan revision 1) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (Japan revision 2) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (World revision 0) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + Puchi Carat (Ver 2.02J 1997/10/29) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Puchi Carat (Ver 2.02O 1997/10/29) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Puchi Carat (Ver 2.04A 1997/11/08) + 1997 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Puck Man (Bootleg set 1) + 1980 + bootleg + + + + + + + + + + + + + Puck Man (bootleg set 2) + 1981 + bootleg (Falcom?) + + + + + + + + + + + + + + + Puck Man (Japan set 1) + 1980 + Namco + + + + + + + + + + + + + + + + + + + Puck Man (Japan set 2) + 1981 + Namco + + + + + + + + + + + + + Puck Man (Spanish, 'Made in Greece' bootleg) + 198? + bootleg (Video Game SA) + + + + + + + + + PuckMan (speedup hack) + 1980 + hack + + + + + + + + + + + + + PuLiRuLa (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + PuLiRuLa (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + PuLiRuLa (World, earlier?) + 1991 + Taito Corporation + + + + + + + + + + + + + Pulstar + 1995 + Aicom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Punch-Out!! (Italian bootleg) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Punch-Out!! (Japan) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Punch-Out!! (Rev A) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Punch-Out!! (Rev B) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Punk Shot (Japan 2 Players) + 1990 + Konami + + + + + + + + + + + Punk Shot (US 2 Players) + 1990 + Konami + + + + + + + + + + + Punk Shot (US 4 Players) + 1990 + Konami + + + + + + + + + + + Punk Shot (World 2 Players) + 1990 + Konami + + + + + + + + + + + Pururun + 1995 + Metro / Banpresto + + + + + + + + + + + Pushman (American Sammy license) + 1990 + Comad (American Sammy license) + + + + + + + + + + + + + + + + + + Pushman (Korea, set 1) + 1990 + Comad + + + + + + + + + + + + + + + + + + Pushman (Korea, set 2) + 1990 + Comad + + + + + + + + + + + + + + + + + + Puzz Loop (Asia) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop (Europe, v0.93) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop (Europe, v0.94) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop (Japan) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop (Korea) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop (USA) + 1998 + Mitchell + + + + + + + + + + + + + + Puzz Loop 2 (010205 Japan) + 2001 + Mitchell, distritued by Capcom + + + + + + + + + + + + + + + + + + + Puzz Loop 2 (010226 Japan Phoenix Edition) [Bootleg] + 2001 + bootleg + + + + + + + + + + + + + + + + + + + Puzz Loop 2 (010226 Japan) + 2001 + Mitchell, distritued by Capcom + + + + + + + + + + + + + + + + + + + Puzz Loop 2 (010302 Euro) + 2001 + Mitchell, distritued by Capcom + + + + + + + + + + + + + + + + + + + Puzzle Bang Bang (Korea, version 2.8 / 990106) + 1999 + Omega System + + + + + + + + + + Puzzle Bang Bang (Korea, version 2.9 / 990108) + 1999 + Omega System + + + + + + + + + + Puzzle Bobble (Japan, B-System) + 1994 + Taito Corporation + + + + + + + + + Puzzle Bobble / Bust-A-Move (Neo-Geo) (bootleg) [Bootleg] + 1994 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble / Bust-A-Move (Neo-Geo) (NGM-083) + 1994 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2 (Ver 2.2J 1995/07/20) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + Puzzle Bobble 2 (Ver 2.2O 1995/07/20) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + Puzzle Bobble 2 (Ver 2.3O 1995/07/31) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo) + 1999 + Taito (SNK license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2X (Ver 2.2J 1995/11/11) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (Ver 2.1A 1996/09/27) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (Ver 2.1J 1996/09/27) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (Ver 2.1O 1996/09/27) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (Ver 2.04A 1997/12/19) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (Ver 2.04J 1997/12/19) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (Ver 2.04O 1997/12/19) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Puzzle Break + 1997 + SemiCom + + + + + + + + + + + Puzzle Club (Japan prototype) + 1990 + Namco + + + + + + + + + + + + + + + + + Puzzle Club (Yun Sung, set 1) + 2000 + Yun Sung + + + + + + + + + + + + + + + + Puzzle Club (Yun Sung, set 2) + 2000 + Yun Sung + + + + + + + + + + + + + + + + Puzzle De Bowling (Japan) + 1999 + Nihon System / Moss + + + + + + + + + + Puzzle De Pon! + 1995 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle De Pon! R! + 1997 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle King (Dance & Puzzle) + 1998 + Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle King [Bootleg] + 2002 + K1 Soft + + + + + + + + Puzzle Star / Mohuan Xingzuo (ver. 100MG, 09/20/99 build) [Incomplete dump] + 1999 + IGS + + + + + + + + + + + + + + + + Puzzle Star / Mohuan Xingzuo (ver. 100MG, 09/30/99 build) [Incomplete dump] + 1999 + IGS (Metro license) + + + + + + + + + + + + + + + + Puzzle Uo Poko (International, ver. 98/02/06) + 1999 + Cave / Jaleco + + + + + + + + + Puzzle Uo Poko (Japan, ver. 98/02/06) + 1999 + Cave / Jaleco + + + + + + + + + Puzzled / Joy Joy Kid (NGM-021)(NGH-021) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzli (revision A) + 1995 + Metro / Banpresto + + + + + + + + + + + Puzzli (revision B) + 1995 + Metro / Banpresto + + + + + + + + + + + Puzzli 2 (V100, China) [Incomplete dump] + 1999 + IGS + + + + + + + + + + + + + + + Puzzli 2 Super (V200) [Incomplete dump] + 2001 + IGS + + + + + + + + + + + + + + + + PuzzLove + 1994 + Para + + + + + + + + + + + + + PuzzLove (Korea) + 1994 + Para + + + + + + + + + + + + + Puzznic (bootleg, set 1) [Bootleg] + 1989 + bootleg + + + + + + Puzznic (bootleg, set 2) [Bootleg] + 1989 + bootleg + + + + + + Puzznic (Italian bootleg) [Bootleg] + 1989 + bootleg + + + + + + Puzznic (Japan) + 1989 + Taito Corporation + + + + + + + + Puzznic (US) + 1989 + Taito America Corporation + + + + + + + + Puzznic (World) + 1989 + Taito Corporation Japan + + + + + + + + Pyros (US) + 1987 + Toaplan / Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Q*bert (early test version) + 1982 + Gottlieb + + + + + + + + + + + + + + Q*bert (Japan) + 1982 + Gottlieb (Konami license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Q*bert (US set 1) + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Q*bert (US set 2) + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Q*bert's Qubes + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Qix (Rev 2) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Qix (set 2, larger roms) + 1981 + Taito America Corporation + + + + + + + + + + + + Qix (set 2, smaller roms) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Qix (set 3, earlier) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + Qix II (Tournament) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Quantum (prototype) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + Quantum (rev 1) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + Quantum (rev 2) + 1982 + General Computer Corporation (Atari license) + + + + + + + + + + + + + + + Quartet (8751 315-5194) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet (Rev A, 8751 317-unknown) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet 2 (8751 317-0010) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet 2 (unprotected) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Quarth (Japan) + 1989 + Konami + + + + + + + + + + + + + + Quester (Japan) + 1987 + Namco + + + + + + + + + + + + + + Quester Special Edition (Japan) + 1987 + Namco + + + + + + + + + + + + + + + Quiz & Dragons (940921 Japan Resale Ver.) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Quiz & Dragons (capcom quiz game 920701 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz & Variety Sukusuku Inufuku (Japan) + 1998 + Video System Co. + + + + + + + + + + + + + Quiz Bisyoujo Senshi Sailor Moon - Chiryoku Tairyoku Toki no Un + 1997 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Chikyu Bouei Gun (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + Quiz Crayon Shinchan (Japan) + 1993 + Taito Corporation + + + + + + + + + + + Quiz Daisousa Sen - The Last Count Down (Korean release) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Daisousa Sen - The Last Count Down (NGM-023)(NGH-023) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz de Idol! Hot Debut (Japan) + 2000 + Psikyo / Moss + + + + + + + + + + + + Quiz F1 1-2 Finish (Japan) + 1992 + Irem + + + + + + + + + + + + + Quiz Gakumon no Susume (Japan ver. JA2 Type L) + 1993 + Konami + + + + + + + + + + + + + + Quiz Ghost Hunter (Japan, ROM Based) + 1994 + Sega + + + + + + + + + + + + + Quiz H.Q. (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + Quiz Jinsei Gekijoh (Japan) + 1992 + Taito Corporation + + + + + + + + + + + Quiz King of Fighters (Korean release) + 1995 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz King of Fighters (SAM-080)(SAH-080) + 1995 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Kokology + 1992 + Tecmo + + + + + + + + + + + + + Quiz Kokology 2 + 1993 + Tecmo + + + + + + + + Quiz Meitantei Neo & Geo - Quiz Daisousa Sen part 2 (NGM-042)(NGH-042) + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Mekurumeku Story (Japan, ROM Based) + 1992 + Sega + + + + + + + + + + + Quiz Nanairo Dreams - nijiirochou no kiseki (nanairo dreams 960826 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + Quiz Olympic (set 1) + 1985 + Seoul Coin Corp. + + + + + + + + Quiz Olympic (set 2) + 1985 + Seoul Coin Corp. + + + + + + + + + + + Quiz Quest - Hime to Yuusha no Monogatari (Japan) + 1991 + Taito Corporation + + + + + + + + + + Quiz Rouka Ni Tattenasai (Japan, ROM Based) + 1991 + Sega + + + + + + + Quiz Sangokushi (Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + Quiz Sekai wa SHOW by shobai (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + + Quiz Syukudai wo Wasuremashita (Japan, Floppy Based, FD1094 317-0058-08b) + 1991 + Sega + + + + + + + Quiz Theater - 3tsu no Monogatari (Ver 2.3J 1994/11/10) + 1994 + Taito Corporation + + + + + + + + + + + + + + + Quiz Tonosama no Yabou (Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + Quiz Tonosama no Yabou 2 Zenkoku-ban (tonosama 2 950123 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Torimonochou (Japan) + 1990 + Taito Corporation + + + + + + + + + + + R&T (Rod-Land prototype?) + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + R-Shark + 1995 + Dooyong + + + + + + + + + + + + + + + + + + + + + + + + R-Type (Japan prototype) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + R-Type (Japan) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + R-Type (US) + 1987 + Irem (Nintendo of America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + R-Type (World bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + R-Type (World) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + R-Type II (Japan) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + R-Type II (Japan, revision C) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + R-Type II (World) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + R-Type Leo (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + R-Type Leo (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + Rabbit (Asia 1/28?) + 1997 + Aorn / Electronic Arts + + + + + + + + + + + + + + + + + Rabbit (Asia 3/6) + 1997 + Aorn / Electronic Arts + + + + + + + + + + + + + + + + + Rabbit (Japan 1/28, location test) + 1996 + Aorn / Electronic Arts + + + + + + + + + + + + + + + + + Rabbit (Japan 3/6?) + 1997 + Aorn / Electronic Arts + + + + + + + + + + + + + + + + + Rabbit Punch (US) + 1987 + V-System Co. (Bally/Midway/Sente license) + + + + + + + + + + + + + + + + + + + + + Rabio Lepus (Japan) + 1987 + V-System Co. + + + + + + + + + + + + + + + + + + + + + Raccoon World + 1998 + Eolith + + + + + + + + + + + + + + + Racing Beat (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Racing Beat (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + Racing Hero (FD1094 317-0144 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Racing Hero (FD1094 317-0144) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rack 'em Up (program code L) + 1987 + Konami + + + + + + + + Rack + Roll + 1986 + Status (Shinkai License) + + + + + + + + Rad Action / NinjaKun Ashura no Shou + 1987 + UPL (World Games license) + + + + + + + + + + + + + + + + Rad Mobile (US) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Rad Mobile (World) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Rad Rally (Japan) [Small GFX Issues] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Rad Rally (US) [Small GFX Issues] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Rad Rally (World) [Small GFX Issues] + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Radar Scope (TRS01) [No sound / Gfx Issues] + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + + Radar Scope [No sound] + 1980 + Nintendo + + + + + + + + + + + + + + + + + + Radical Radial (Japan) + 1982 + Logitec Corp. + + + + + + + + + + + + + + + + + + Radical Radial (US) + 1982 + Nichibutsu USA + + + + + + + + + + + + + + + + + + Rafflesia (315-5162) + 1986 + Coreland / Sega + + + + + + + + + + + + + + + + + + Rage of the Dragons (NGH-2640) + 2002 + Evoga / Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rage of the Dragons (NGM-264?) + 2002 + Evoga / Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ragnagard / Shin-Oh-Ken + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Raiden (Korea) + 1990 + Seibu Kaihatsu (IBL Corporation license) + + + + + + + + + + + + + + + + + + + + Raiden (Korea, bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Raiden (set 1) + 1990 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden (set 2) + 1990 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden (set 3) + 1990 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + Raiden (Taiwan) + 1990 + Seibu Kaihatsu (Liang HWA Electronics license) + + + + + + + + + + + + + + + + + + + + Raiden (US set 3) + 1990 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + Raiden (US, set 1) + 1990 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + Raiden (US, set 2, SEI8904 + SEI9008 PCBs) + 1990 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden DX (China) + 1994 + Seibu Kaihatsu (Ideal International Development Corp license) + + + + + + + + + + + + + + + + + + Raiden DX (Germany) + 1994 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + Raiden DX (Holland) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (Hong Kong, set 1) + 1994 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + + Raiden DX (Hong Kong, set 2) + 1994 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + + Raiden DX (Japan, set 1) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (Japan, set 2) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (Korea) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (Portugal) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (UK) + 1994 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden DX (US) + 1994 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden Fighters (Australia) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Austria) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Evaluation Software For Show, Germany) + 1996 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Germany) + 1996 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Great Britain) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Greece) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Hong Kong) + 1996 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + Raiden Fighters (Italy) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Japan, earlier) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Japan, earliest) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters (Japan, newer) + 1996 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + Raiden Fighters (Korea) + 1996 + Seibu Kaihatsu (Dream Island license) + + + + + + + + + + + + + + + + + Raiden Fighters (Taiwan, single board) + 1996 + Seibu Kaihatsu (Explorer System Corp. license) + + + + + + + + + + + + + + + + + Raiden Fighters (US, earlier) + 1996 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters (US, newer) + 1996 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Germany) + 1997 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Hong Kong) + 1997 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Italy) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Japan set 1) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Japan set 2) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Japan set 3) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Japan set 4) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Korea) + 1997 + Seibu Kaihatsu (Dream Island license) + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Switzerland) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (Taiwan) + 1997 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (US) + 1997 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive (US, single board) + 1997 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + Raiden Fighters 2 - Operation Hell Dive 2000 (China, SYS386I) + 2000 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (Germany) + 1998 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (Japan) + 1998 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (Korea) + 1998 + Seibu Kaihatsu (Dream Island license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (Taiwan) + 1998 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (US) + 1998 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (US, single board) + 1999 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet (US, single board, test version?) + 1999 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Raiden Fighters Jet 2000 (China, SYS386I) + 2000 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + Raiden II (easier, US set 3) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden II (easier, US, prototype? 11-16) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + Raiden II (Easy Version, Germany) + 1993 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + Raiden II (Easy Version, Japan?) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Easy Version, Korea?) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Easy Version, US set 1) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + Raiden II (Easy Version, US set 2) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden II (France) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Germany) + 1993 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + Raiden II (harder, Raiden DX Hardware) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Holland) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Hong Kong) + 1993 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + + Raiden II (Italy) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Japan) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Korea) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Spain) + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Raiden II (Switzerland) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden II (US, set 1) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden II (US, set 2) + 1993 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Raiden II New / Raiden DX (newer V33 PCB) (Raiden DX EEPROM) [Terrible sound quality is normal for this game, use Raiden DX instead!] + 1996 + Seibu Kaihatsu + + + + + + + + + + + Raiden II New / Raiden DX (newer V33 PCB) (Raiden II EEPROM) [Terrible sound quality is normal for this game, use Raiden II instead!] + 1996 + Seibu Kaihatsu + + + + + + + + + + + Raiders5 + 1985 + UPL + + + + + + + + + Raiders5 (Japan) + 1985 + UPL (Taito license) + + + + + + + + + Raiga - Strato Fighter (Japan) + 1991 + Tecmo + + + + + + + + + + + + + Raiga - Strato Fighter (US) + 1991 + Tecmo + + + + + + + + + + + + + Rail Chase (Japan) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rail Chase (World) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Raimais (Japan) + 1988 + Taito Corporation + + + + + + + + + + Raimais (Japan, first revision) + 1988 + Taito Corporation + + + + + + + + + + Raimais (World) + 1988 + Taito Corporation Japan + + + + + + + + + + Rainbow Islands (Extra) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + Rainbow Islands (new version) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + Rainbow Islands (old version) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + Rally Bike / Dash Yarou + 1988 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + Rally X + 1980 + Namco + + + + + + + + + + + + + + + + + + + + + Rally X (32k Ver.?) + 1980 + Namco + + + + + + + + + + + + + + + + Rally X (Midway) + 1980 + Namco (Midway License) + + + + + + + + + + + + + + + + Rally X (Model Racing) + 1980 + bootleg (Petaco) + + + + + + + + + + + + + + + + + + + + + Rambo 3 (bootleg of Ikari, Joystick hack) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Rambo III (Europe) + 1989 + Taito Europe Corporation + + + + + + + + + + + + + Rambo III (Europe, Proto?) + 1989 + Taito Europe Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rambo III (US) + 1989 + Taito Europe Corporation + + + + + + + + + + + + + Rampage (Rev 2, 8/4/86) + 1986 + Bally Midway + + + + + + + + + + + + + + + + Rampage (Rev 3, 8/27/86) + 1986 + Bally Midway + + + + + + + + + + + + + + + + Rampage: World Tour (rev 1.1) + 1997 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Rampage: World Tour (rev 1.3) + 1997 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Rapid Hero (Media Trading) + 1994 + Media Trading Corp + + + + + + + + + + + + + + + + + Rapid Hero (NMK) + 1994 + NMK + + + + + + + + + + + + + + + + + Rastan (US Rev 1) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Rastan (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Rastan (US, Earlier code base) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Rastan (World Rev 1) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Rastan (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Rastan (World, Earlier code base) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Rastan Saga (Japan Rev 1) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + Rastan Saga (Japan Rev 1, Earlier code base) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + Rastan Saga (Japan, Earlier code base) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + Rastan Saga 2 (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + Ray Force (Ver 2.3A 1994/01/20) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + Ray Force (Ver 2.3J 1994/01/20) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + Razzmatazz + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + Reactor + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Reaktor (Track & Field conversion) + 1987 + Zilec + + + + + + + + + + + + + + + + Real Bout Fatal Fury / Real Bout Garou Densetsu (bug fix revision) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury / Real Bout Garou Densetsu (Korean release, bug fix revision) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095)(NGH-095) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers (Korean release) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - the newcomers (NGH-2400) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - the newcomers (NGM-2400) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - the newcomers (Secret Character Hack) [Hack] + 1998 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special (Boss Hack) [Hack, Select Geese Howard with portrait, press 'B+C' to select EX characters] + 1996 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special (Korean release) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Recalhorn (Ver 1.42J 1994/5/11) (Prototype) [Prototype] + 1994 + Taito Corporation + + + + + + + + + + + + + + + Recordbreaker (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Red Baron + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + Red Baron (Revised Hardware) + 1980 + Atari + + + + + + + + + + + + + + + + + + + + Red Earth / War-Zard (Euro 961023) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Red Earth / War-Zard (Euro 961121) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Red Hawk (Excellent Co., Ltd) + 1997 + Afega (Excellent Co. license) + + + + + + + + + + Red Hawk (horizontal, bootleg) + 1997 + bootleg (Vince) + + + + + + + + + + Red Hawk (horizontal, Greece) + 1997 + Afega + + + + + + + + + + Red Hawk (horizontal, Italy) + 1997 + Afega (Hae Dong Corp license) + + + + + + + + + + Red Hawk (horizontal, Spain) + 1997 + Afega (Hae Dong Corp license) + + + + + + + + + + Red Hawk (Korea) + 1997 + Afega Co. + + + + + + + + + + Red Hawk (USA, Canada & South America) + 1997 + Afega (New Vision Ent. license) + + + + + + + + + + Red Robin + 1986 + Elettronolo + + + + + + + + + + + + + + + + + + + + + + + + + + Regulus (315-5033) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Regulus (315-5033, rev. A) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Regulus (not encrypted) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Relief Pitcher (set 1, 07 Jun 1992 / 28 May 1992) + 1992 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Relief Pitcher (set 2, 26 Apr 1992 / 08 Apr 1992) + 1992 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Relief Pitcher (set 3, 10 Apr 1992 / 08 Apr 1992) + 1992 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Renegade (US bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Renegade (US) + 1986 + Technos (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Repulse + 1985 + Crux / Sega + + + + + + + + + + + + + + + + + + + + + + + + Rescue + 1982 + Stern + + + + + + + + + + + + + Return of the Invaders + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg no MCU set 1) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg no MCU set 2) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg no MCU set 3) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg w/MCU) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Return of the Jedi + 1984 + Atari + + + + + + + + + + + + + + + + + + + Revenger '84 (set 1) + 1984 + Epos Corporation + + + + + + + + + Revenger '84 (set 2) [Bad dump] + 1984 + Epos Corporation + + + + + + + + + Revolution X (prototype, rev 5.0 5/23/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Revolution X (rev 1.0 6/16/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rezon + 1991 + Allumer + + + + + + + + + + + + Rezon (Taito) + 1992 + Allumer (Taito license) + + + + + + + + + + + + Riddle of Pythagoras (Japan) + 1986 + Sega / Nasco + + + + + + + + Riding Fight (Ver 1.0A) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + Riding Fight (Ver 1.0J) + 1992 + Taito Corporation + + + + + + + + + + + + + + + Riding Fight (Ver 1.0O) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + Riding Hero (NGM-006)(NGH-006) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Riding Hero (set 2) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ring Fighter (set 1) + 1984 + Kaneko (Taito license) + + + + + + + + + + + + + + + + Ring Fighter (set 2) + 1984 + Kaneko (Taito license) + + + + + + + + + + + + + + + + Ring King (US set 1) + 1985 + Wood Place Inc. (Data East USA license) + + + + + + + + + + + + + + + + + + + + Ring King (US set 2) + 1985 + Wood Place Inc. (Data East USA license) + + + + + + + + + + + + + + + + + + + + Ring King (US set 3) + 1985 + Wood Place Inc. (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + + Ring King (US, Wood Place Inc.) + 1985 + Wood Place Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + Ring no Ohja (Japan 2 Players ver. N) + 1988 + Konami + + + + + + + + + + + + + + Ring of Destruction - slammasters II (940831 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Ring of Destruction - slammasters II (940902 Brazil) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Ring of Destruction - slammasters II (940902 Euro Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Ring of Destruction - slammasters II (940902 Euro) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Ring of Destruction - slammasters II (940902 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Ring Rage (Ver 2.3A 1992/08/09) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + Ring Rage (Ver 2.3J 1992/08/09) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + Ring Rage (Ver 2.3O 1992/08/09) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Riot + 1992 + NMK + + + + + + + + + + + + Riot (Woong Bi license) + 1992 + Woong Bi + + + + + + + + + + + + Riot City (Japan) + 1991 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + Risky Challenge + 1993 + Irem + + + + + + + + + + + River Patrol (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + River Patrol (Japan) + 1981 + Orca + + + + + + + + + + + + + + + River Patrol (Japan, unprotected) + 1981 + Orca + + + + + + + + + + + + + + + Road Fighter (set 1) + 1984 + Konami + + + + + + + + + + + + + + + + + + + Road Fighter (set 2) + 1984 + Konami + + + + + + + + + + + + + + + + + + + Road Fighter (set 3, conversion hack on Hyper Sports PCB) + 1984 + hack + + + + + + + + + + + + + + + + + + + + Robo Army (set 1) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robo Army (set 2) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robo Wres 2001 + 1986 + Sanritsu / Sega + + + + + + + + + + + + + + + + Robocop (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (Red Corporation World bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (US revision 0) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (US revision 1) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World revision 3) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World revision 4) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (Euro/Asia v0.10) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (Japan v0.11) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (US v0.05) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (US v0.10) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robotron: 2084 (1987 'shot-in-the-corner' bugfix) + 1987 + hack + + + + + + + + + + + + + + + + + + Robotron: 2084 (2012 'wave 201 start' hack) + 2012 + hack + + + + + + + + + + + + + + + + + + Robotron: 2084 (2015 'tie-die V2' hack) + 2015 + hack + + + + + + + + + + + + + + + + + + Robotron: 2084 (Solid Blue label) + 1982 + Williams / Vid Kidz + + + + + + + + + + + + + + + + + + Robotron: 2084 (Unidesa license) + 1987 + Williams / Vid Kidz (Unidesa license) + + + + + + + + + + + + + + + + + + Robotron: 2084 (Yellow/Orange label) + 1982 + Williams / Vid Kidz + + + + + + + + + + + + + + + + + + Roc'n Rope + 1983 + Konami + + + + + + + + + + + + + + + + + + + + Roc'n Rope (Kosuka) + 1983 + Konami / Kosuka + + + + + + + + + + + + + + + + + + + + Rock Climber + 1981 + Taito + + + + + + + + + + + + + + + + + Rock Duck (prototype?) [incorrect colors] + 1983 + Datel SAS + + + + + + + + + + Rock Tris + 1994 + Yun Sung + + + + + + + + + + + Rock'n 3 (Japan) + 1999 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rock'n 4 (Japan, prototype) + 2000 + Jaleco / PCCWJ + + + + + + + + + + + + + + + + + + + + Rock'n Rage (prototype?) [Prototype] + 1986 + Konami + + + + + + + + + + + + + + + + + + Rock'n Rage (World) + 1986 + Konami + + + + + + + + + + + + + + Rock'n Tread (Japan) + 1999 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + Rock'n Tread (Japan, alternate) + 1999 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + Rock'n Tread 2 (Japan) + 1999 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rockman - the power battle (950922 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rockman 2 - the power fighters (960708 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + Rockman: The Power Battle (950922 Japan) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rod-Land (Japan bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + Rod-Land (Japan) + 1990 + Jaleco + + + + + + + + + + + + + + + + Rod-Land (World, set 1) + 1990 + Jaleco + + + + + + + + + + + + + + + + Rod-Land (World, set 2) + 1990 + Jaleco + + + + + + + + + + + + + + + + Rohga Armor Force (Asia/Europe v3.0 Set 1) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Rohga Armor Force (Asia/Europe v3.0 Set 2) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Rohga Armor Force (Asia/Europe v5.0) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Rohga Armor Force (Hong Kong v3.0) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Rohga Armor Force (US v1.0) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Roller Aces (set 1) + 1983 + Kaneko (Williams license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Roller Aces (set 2) + 1983 + Kaneko (Williams license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Roller Jammer + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rollergames (Japan) + 1991 + Konami + + + + + + + + + + Rollergames (US) + 1991 + Konami + + + + + + + + + + Rolling Crush (version 1.03.E - 1999/01/29) + 1999 + SemiCom / Exit + + + + + + + + + + + + + + Rolling Crush (version 1.07.E - 1999/02/11, Trust license) + 1999 + SemiCom / Exit (Trust license) + + + + + + + + + + + + + + Rolling Thunder (oldest) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (rev 1) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (rev 2) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (rev 3) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (rev 3, hack) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder 2 + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder 2 (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rompers (Japan, new version (Rev B)) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + Rompers (Japan, old version) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + Rootin' Tootin' (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rootin' Tootin' / La-Pa-Pa (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ropeman (bootleg of Roc'n Rope) [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + Rough Racer (Japan, Floppy Based, FD1094 317-0058-06b) + 1990 + Sega + + + + + + + Round-Up + 1981 + Taito Corporation (Amenip/Centuri license) + + + + + + + + + + + + + Route 16 (bootleg) [Bootleg] + 1981 + bootleg (Leisure and Allied) + + + + + + + + + + + + + + + Route 16 (Centuri license, set 1) + 1981 + Tehkan / Sun Electronics (Centuri license) + + + + + + + + + + + + + + + + Route 16 (Centuri license, set 2) + 1981 + Tehkan / Sun Electronics (Centuri license) + + + + + + + + + + + + + + + + Route 16 (Centuri license, set 3, bootleg?) + 1981 + Tehkan / Sun Electronics (Centuri license) + + + + + + + + + + + + + + + + Route 16 (Sun Electronics) + 1981 + Sun Electronics + + + + + + + + + + + + + + + + Route X (bootleg, set 1) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + Route X (bootleg, set 2) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + + Rug Rats + 1983 + Nichibutsu + + + + + + + + + + + + + + + + Rumba Lumber + 1984 + Taito + + + + + + + + + + + + + + Run Deep [Bootleg] + 1988 + Cream Co., Ltd. + + + + + + + + + + + + + + + + + + + Runark (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + Rush & Crash (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rush'n Attack (US) + 1985 + Konami + + + + + + + + + + + + + + Rygar (US set 1) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + Rygar (US set 2) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + Rygar (US set 3 Old Version) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + Rygar (US, bootleg) [Bootleg] + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + Ryu Jin (Japan, ET910000A PCB) + 1993 + Taito Corporation + + + + + + + + + + + Ryu Jin (Japan, ET910000B PCB) + 1993 + Taito Corporation + + + + + + + + + + + + + RyuKyu (Japan) (FD1094 317-5023) + 1990 + Success / Sega + + + + + + + + + + + + + + + + RyuKyu (Japan, FD1094 317-5023 decrypted) [Bootleg] + 1990 + Success / Sega + + + + + + + + + + + + + + + RyuKyu (Rev A, Japan) (FD1094 317-5023A) + 1990 + Success / Sega + + + + + + + + + + + + + + + + Ryuusei Janshi Kirara Star + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + S.P.Y. - Special Project Y (US ver. M) + 1989 + Konami + + + + + + + + + + + + + S.P.Y. - Special Project Y (World ver. N) + 1989 + Konami + + + + + + + + + + + + + S.R.D. Mission + 1986 + Kyugo / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + S.S. Mission + 1992 + Comad + + + + + + + + + + + + + + + S.V.G. - Spectral vs Generation (V100, Japan, Single PCB Version) + 2005 + IGS + + + + + + + + + + + + + + + + + + + + S.V.G. - Spectral vs Generation (V200, China) + 2005 + IGS + + + + + + + + + + + + + + + + + + + + + + + Saboten Bombers (set 1) + 1992 + NMK / Tecmo + + + + + + + + + + Saboten Bombers (set 2) + 1992 + NMK / Tecmo + + + + + + + + + + Sadari + 1993 + Dooyong (NTC license) + + + + + + + + + + + + + + + Safari Rally (Japan) + 1979 + SNK + + + + + + + + + + + + + + + + + + + + + + Safari Rally (World) + 1979 + SNK (Taito license) + + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan bootleg 1) [Bootleg, missing some sounds] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan bootleg 2) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan) + 1988 + Technos Japan + + + + + + + + + + + + + + + + + + + Saigo no Nindou (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Saint Dragon (bootleg) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saint Dragon (set 1) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + Saint Dragon (set 2) + 1989 + Jaleco + + + + + + + + + + + + + + + + + Salamander (version D) + 1986 + Konami + + + + + + + + + + Salamander (version J) + 1986 + Konami + + + + + + + + + + Same! Same! Same! (1P set) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Same! Same! Same! (1P set, NEW VER! hack) + 2015 + hack (trap15) + + + + + + + + + + + + + + + + + + Same! Same! Same! (2P set) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Samurai Aces (World) + 1993 + Psikyo / Banpresto + + + + + + + + + + + Samurai Nihon-Ichi (bootleg, harder) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + Samurai Nihon-Ichi (set 1) + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + + Samurai Nihon-Ichi (set 2) + 1985 + Kaneko / Taito + + + + + + + + + + + + + + + + + + + + + Samurai Shodown / Samurai Spirits (NGH-045) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown / Samurai Spirits (NGM-045) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown / Samurai Spirits (NGM-045, alternate board) + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown II / Shin Samurai Spirits - Haohmaru jigokuhen (NGM-063)(NGH-063) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown II / Shin Samurai Spirits - Haohmaru jigokuhen (Special 2017, hack) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGH-087) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin (NGM-222)(NGH-222) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin (Special 2017, hack) [Hack] + 1996 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V / Samurai Spirits Zero (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V / Samurai Spirits Zero (hack of XBOX version) [Hack] + 2003 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V / Samurai Spirits Zero (NGH-2700) + 2003 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 1) + 2003 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 2) + 2003 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V Perfect / Samurai Spirits Zero Perfect (bootleg, hack) [Hack] + 2020 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V Special / Samurai Spirits Zero Special (NGH-2720) (1st release, censored) + 2004 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V Special / Samurai Spirits Zero Special (NGH-2720) (2nd release, less censored) + 2004 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V Special / Samurai Spirits Zero Special (NGM-272) (NGH-272) (Final Edition, location test version) [Hack] + 2004 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown V Special / Samurai Spirits Zero Special (NGM-2720) + 2004 + Yuki Enterprise / SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sand Scorpion + 1992 + Face + + + + + + + + + + + Sand Scorpion (Chinese Title Screen, Revised Hardware) + 1992 + Face + + + + + + + + + Sand Scorpion (Earlier) + 1992 + Face + + + + + + + + + + + Sangokushi II (921005 Asia) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sangokushi II (bootleg) [Bootleg] + 1992 + hack + + + + + + + + + + + + + + + + + Sangokushi II (hack set 1, 921005 Asia) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + Sangokushi II (hack set 2, 921005 Asia) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + Sangokushi II (hack set 3, 921005 Asia) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + Sangokushi II: Huo Fenghuang (Chinese bootleg, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + Sangokushi II: San Jian Sheng (Chinese bootleg set 1, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + Sangokushi II: San Jian Sheng (Chinese bootleg set 2, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + + Sangokushi II: San Sheng Jian (Chinese bootleg set 1, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + + Sangokushi II: San Sheng Jian (Chinese bootleg set 2, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + Sangokushi II: Sanguo Yingxiong Zhuan (Chinese bootleg set 1, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + Sangokushi II: Sanguo Yingxiong Zhuan (Chinese bootleg set 2, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + Sangokushi II: Sanguo Yingxiong Zhuan (Chinese bootleg set 3, 921005 Asia) [Bootleg] + 1992 + bootleg + + + + + + + + + Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 1, 921005 Asia) [Bootleg, Imperfect Graphics] + 1992 + bootleg + + + + + + + + + + + + + + + + Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 2, 921005 Asia) [Bootleg, Imperfect Graphics] + 1992 + bootleg + + + + + + + + + + + + + + + Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 3, 921005 Asia) [Bootleg, No sound] + 1992 + bootleg + + + + + + + + + + + + + Sangokushi II: Sheng Jian Sanguo (Chinese bootleg set 4, 921005 Asia) [Bootleg, Imperfect graphics] + 1992 + bootleg + + + + + + + + + + + + + + + Sangokushi III Gaiden: Kakou-On's Revenge DX (hack) + 2018 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sankokushi (Japan) [Graphics corruption on score/bonus screen is normal] + 1996 + Mitchell + + + + + + + + + + + Sanrin San Chan (Japan) + 1984 + Sega + + + + + + + + + + + + + + + + + + SAR - Search And Rescue (Japan) + 1989 + SNK + + + + + + + + + + + + + + + + + SAR - Search And Rescue (US) + 1989 + SNK + + + + + + + + + + + + + + + + + SAR - Search And Rescue (World) + 1989 + SNK + + + + + + + + + + + + + + + + + Sarge + 1985 + Bally Midway + + + + + + + + + + + + + + + + + + + + Saru-Kani-Hamu-Zou (Japan) + 1997 + Kaneko / Mediaworks + + + + + + + + + + + + + + Sasuke vs. Commander + 1980 + SNK + + + + + + + + + + + + + + + + + + + + + Satan of Saturn (Inder S.A., bootleg) + 1981 + bootleg (Inder S.A.) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Satan of Saturn (set 1) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Satan of Saturn (set 2) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Satan's Hollow (set 1) + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + Satan's Hollow (set 2) + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (bootleg with PIC16C57, set 1, 930713 etc) [Bootleg, No Sound] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (bootleg with PIC16C57, set 2, 930713 etc) [Bootleg, No Sound] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (slam masters 930713 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (Slam Masters 930713 World) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saturn + 1983 + [Zilec Electronics] Jaleco + + + + + + + + + + + + + + + + Saulabi Spirits / Jin Saulabi Tu Hon (Korean release of Samurai Shodown II) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saulabi Spirits / Jin Saulabi Tu Hon (Korean release of Samurai Shodown II, set 2) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sauro (bootleg) [Bootleg, Missing speech is normal] + 1987 + bootleg + + + + + + + + + + + + + + + + + + Sauro (Philko license) + 1987 + Tecfri (Philko license) + + + + + + + + + + + + + + + + + + Sauro (Recreativos Real S.A. license) + 1987 + Tecfri (Recreativos Real S.A. license) + + + + + + + + + + + + + + + + + + Sauro (set 1) + 1987 + Tecfri + + + + + + + + + + + + + + + + + + Sauro (set 2) + 1987 + Tecfri + + + + + + + + + + + + + + + + + + Savage Bees + 1985 + Capcom (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Savage Reign / Fu'un Mokushiroku - kakutou sousei + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Savage Reign / Fu'un Mokushiroku - kakutou sousei (Boss Hack) [Hack] + 1995 + Yumeji, Dodowang[EGCG] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Schmeiser Robo (Japan) + 1993 + Hot-B + + + + + + + + + + + + + + + + + Scion (Cinematronics) + 1984 + Seibu Denshi (Cinematronics license) + + + + + + + + + + + + + + + + + + + + + Scion [Music horribly broken, use scionc instead!] + 1984 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + Scooter Shooter + 1985 + Konami + + + + + + + + + + + + + + Scorpion (Moon Cresta hardware) + 19?? + Dorneer + + + + + + + + + + + + + + + + Scorpion (set 1) [Incomplete Sound] + 1982 + Zaccaria + + + + + + + + + + + + + + + + Scorpion (set 2) [Incomplete Sound] + 1982 + Zaccaria + + + + + + + + + + + + + + + + + Scorpion (set 3) [Incomplete Sound] + 1982 + Zaccaria + + + + + + + + + + + + + + + + Scramble + 1981 + Konami + + + + + + + + + + + + + + + + + Scramble (bootleg on Galaxian hardware) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + Scramble (bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + Scramble (bootleg?) [Bootleg] + 1981 + bootleg? + + + + + + + + + + + + + + + + + Scramble (Centromatic S.A., Spanish bootleg) [Bootleg] + 1981 + bootleg (Centromatic S.A.) + + + + + + + + + + + + + + + + + Scramble (Karateko, French bootleg) [Bootleg] + 1981 + Karateko (bootleg) + + + + + + + + + + + + + + + + + Scramble (Petaco S.A., Spanish bootleg) [Bootleg] + 1981 + bootleg (Petaco S.A.) + + + + + + + + + + + + + + + + + Scramble (Reben S.A. Spanish bootleg) [Bootleg] + 1981 + bootleg (Reben S.A.) + + + + + + + + + + + + + + Scramble (Recreativos Franco, Spanish bootleg) [Bootleg] + 1981 + bootleg (Recreativos Franco) + + + + + + + + + + + + + Scramble (Stern) + 1981 + Konami (Stern license) + + + + + + + + + + + + + + + + + Scramble Spirits (Japan, Floppy DS3-5000-02-REV-A Based) + 1988 + Sega + + + + + + Scramble Spirits (World, Floppy Based) + 1988 + Sega + + + + + + Scramble Spirits (World, Floppy Based, FD1094 317-0058-02c) + 1988 + Sega + + + + + + + Scrambled Egg + 1983 + Technos + + + + + + + + + + + + + + + + Screw Loose (prototype) [Prototype] + 1983 + Mylstar + + + + + + + + + + + + + + + + Scrum Try (DECO Cassette) (US) (set 1) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scrum Try (DECO Cassette) (US) (set 2) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scud Hammer + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + SD Fighters (Korea) + 1996 + SemiCom + + + + + + + + + + + + + + + + + + + + + SD Gundam Neo Battling (Japan) + 1992 + Banpresto / Sotsu Agency. Sunrise + + + + + + + + SD Gundam Psycho Salamander no Kyoui + 1991 + Banpresto / Bandai + + + + + + + + + + + + + + + + + SD Gundam Sangokushi Rainbow Tairiku Senki (Japan) + 1993 + Banpresto + + + + + + + + + + + + + + + + SD Gundam Sangokushi Rainbow Tairiku Senki (Korea) + 1993 + Banpresto + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, original hardware) + 1987 + Sega + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, set 1) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, set 2) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, set 3) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, set 4) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (bootleg, set 5) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (Japan, newer, System 16A, FD1089B 317-0027) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (Japan, old, System 16A, FD1089B 317-0027) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (System 16B, FD1089A 317-0028) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + Sea Fighter Poseidon + 1984 + Taito Corporation + + + + + + + + + + + + + + + + Search Eye (English / Korean / Japanese / Italian) + 1999 + Yun Sung + + + + + + + + + + + + + + + + + + + + Search Eye (English / Korean) + 1999 + Yun Sung + + + + + + + + + + + + + + + + + + + + Search Eye Plus V2.0 + 1999 + Yun Sung + + + + + + + + + + + + + + + + Secret Agent (Japan revision 2) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Secret Agent (World revision 3) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Section Z (set 1) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + Section Z (set 2) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + Sector Zone (set 1) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + Sector Zone (set 2, Tecfri hardware) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + Sector Zone (set 3) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + Sega Ninja (315-5102) + 1985 + Sega + + + + + + + + + + + + + + + + + + Sega Ninja (315-5113) [needs decrypting] + 1985 + Sega + + + + + + + + + + + + + + + + + + Sega Ninja (not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + SegaSonic The Hedgehog (Japan, prototype) [Prototype] + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + SegaSonic The Hedgehog (Japan, rev. C) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + Sei Senshi Amatelass + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Seicross (set 1) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + Seicross (set 2) + 1984 + Nichibutsu / Alice + + + + + + + + + + + + + + + + + + Seishun Scandal (315-5132, Japan) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + Sel Feena + 1991 + East Technology + + + + + + + + + Sen Jing - Guardian Storm (Japan) + 1998 + Afega + + + + + + + + + + + Sen-Know (Japan) + 1999 + Kaneko / Kouyousha + + + + + + + + + + + + + + + + Sengeki Striker (Asia) + 1997 + Kaneko / Warashi + + + + + + + + + + + + + + + + + + Sengeki Striker (Japan) + 1997 + Kaneko / Warashi + + + + + + + + + + + + + + + + + + Sengoku / Sengoku Denshou (NGH-017)(US) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku / Sengoku Denshou (NGM-017)(NGH-017) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 2 / Sengoku Denshou 2 + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 3 / Sengoku Densho 2001 (Evolution 1.0, FCHT hack) [Hack] + 2001 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 3 / Sengoku Densho 2001 (Feng Shen Edition, Hack) [Hack] + 2020-04-10 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 3 / Sengoku Densho 2001 (set 1) + 2001 + SNK / Noise Factory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 3 / Sengoku Densho 2001 (Set 2) + 2001 + SNK / Noise Factory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku Ace (Japan, set 1) + 1993 + Psikyo / Banpresto + + + + + + + + + + + Sengoku Ace (Japan, set 2) + 1993 + Psikyo / Banpresto + + + + + + + + + + + Senjo no Ookami II (Ookami 2 900302 Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senjou no Ookami + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Senjyo + 1983 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + Senkyu (Japan, earlier) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + Senkyu (Japan, newer) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + SF-X [Incomplete Sound] + 1983 + Taiyo System (Nichibutsu license) + + + + + + + + + + + + + + + + + + + + + Shackled (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Dancer (set 1) + 1989 + Sega + + + + + + + + + + + + + + + + + + Shadow Dancer (set 2, Japan) + 1989 + Sega + + + + + + + + + + + + + + + + + + Shadow Dancer (set 3, US) + 1989 + Sega + + + + + + + + + + + + + + + + + + Shadow Force (Japan, Version 2) + 1993 + Technos Japan + + + + + + + + + + + + + + + + + + Shadow Force (US, Version 2) + 1993 + Technos Japan + + + + + + + + + + + + + + + + + + Shadow Force (World, Version 3) + 1993 + Technos Japan + + + + + + + + + + + + + + + + + + Shadow of the Beast (Neo Geo demo) [Demo] + ???? + Jeff Kurtz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Warriors (World, set 1) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Shadow Warriors (World, set 2) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Shadowland (YD3) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shanghai III (Japan) + 1993 + Sunsoft + + + + + + + Shanghai III (US) + 1993 + Sunsoft + + + + + + + Shanghai III (US, prototype) + 1993 + Sunsoft + + + + + + + + + + Shanghai III (World) + 1993 + Sunsoft + + + + + + + + Shao-lin's Road (set 1) + 1985 + Konami + + + + + + + + + + + + + + + Shao-lin's Road (set 2) + 1985 + Konami + + + + + + + + + + + + + + + Shark Attack + 1980 + Pacific Novelty + + + + + + + + + + + + + + + + + + Shingen Samurai-Fighter (Japan, English) [Game crashes in level 2, play tshingena instead!] + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + Shinnyuushain Tooru-kun + 1984 + Konami + + + + + + + + + + + + + + + + + Shinobi (beta bootleg, System 16A) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 1, System 16A, FD1094 317-0050 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + Shinobi (set 1, System 16A, FD1094 317-0050) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 2, System 16B, FD1094 317-0049 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + Shinobi (set 2, System 16B, FD1094 317-0049) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 3, System 16B, MC-8123B 317-0054) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 4, System 16B, MC-8123B 317-0054) + 1987 + Sega + + + + + + + + + + + + + + + + Shinobi (set 5, System 16B, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + Shinobi (set 6, System 16A, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + Shinobi (set 6, System 16B, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + Shinobi (Star bootleg, System 16A) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + Shinobi / FZ-2006 (Korean System 16 bootleg) (ISG Selection Master Type 2006) + 2006 + ISG + + + + + Shippu Mahou Daisakusen - Kingdom Grandprix + 1994 + Raizing / 8ing + + + + + + + + + + Shisensho - Joshiryo-Hen (Japan) + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + + + + Shisensho II + 1993 + Tamtex + + + + + + + + + + Shock Troopers (set 1) + 1997 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shock Troopers (set 2) + 1997 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shock Troopers - 2nd Squad + 1998 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shocking + 1997 + Yun Sung + + + + + + + + + + + + + + Shogun Warriors (Korea?) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + + Shogun Warriors (US) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + Shogun Warriors (World) + 1992 + Kaneko + + + + + + + + + + + + + + + + + + + Shoot Out (Japan) + 1985 + Data East Corporation + + + + + + + + + + + + + Shoot Out (Korean Bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + Shoot Out (US) + 1985 + Data East USA + + + + + + + + + + + + + + + + + Shot Rider + 1985 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Shot Rider (bootleg) [Bootleg, Graphics issues] + 1985 + bootleg + + + + + + + + + + + + + + + + + Shot Rider (Sigma license) + 1984 + Seibu Kaihatsu (Sigma license) + + + + + + + + + + + + + + + + + + Shuffleshot (v1.35) + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Shuffleshot (v1.37) + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Shuffleshot (v1.38) + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Shuffleshot (v1.39) + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Shuffleshot (v1.40) + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + Shuuz (version 7.1) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + Shuuz (version 8.0) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + Sichuan II (hack, set 1) + 1989 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sichuan II (hack, set 2) + 1989 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (Japan, 861128) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (US, 861128) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (US, 861202) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (World, 861129) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Pocket (bootleg, set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + Side Pocket (bootleg, set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + Side Pocket (Japan, Cocktail) + 1986 + Data East Corporation + + + + + + + + + + + + + + Side Pocket (World) + 1986 + Data East Corporation + + + + + + + + + + + + + + Silent Dragon (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + Silent Dragon (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + Silent Dragon (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + Silk Worm (bootleg) [Bootleg] + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + Silk Worm (Japan) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + Silk Worm (prototype?) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + Silk Worm (World) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + Silver Land + 1981 + Falcon + + + + + + + + + + + + + + + + + + Silver Millennium + 1995 + Para + + + + + + + + + + + + + + + + + + + Sinistar (AMOA-82 prototype) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + Sinistar (revision 2) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + Sinistar (revision 3) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + Sirio II (Calfesa S.L. Spanish Moon Cresta bootleg) [Bootleg] + 1980? + bootleg (Calfesa S.L.) + + + + + + + + + + + + + + + + Skater (DECO Cassette) (Japan) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skull & Crossbones (rev 5) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skull Fang (Asia) + 1996 + Data East Corporation + + + + + + + + + + + + + + + Skull Fang (Japan) + 1996 + Data East Corporation + + + + + + + + + + + + + + + Skull Fang (World) + 1996 + Data East Corporation + + + + + + + + + + + + + + + Sky Adventure (Japan) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + Sky Adventure (US) + 1989 + Alpha Denshi Co. (SNK of America license) + + + + + + + + + + + + + + + Sky Adventure (World) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + Sky Alert + 1992 + Metro + + + + + + + + + + + + + + + Sky Army + 1982 + Shoei + + + + + + + + + + + + Sky Base + 1982 + Omori Electric Co. Ltd + + + + + + + + + + + + + + Sky Fox + 1987 + Jaleco (Nichibutsu USA license) + + + + + + + + + + + + + + + + Sky Kid (CUS60 version) + 1985 + Namco + + + + + + + + + + + + + + + + + Sky Kid (new version) + 1985 + Namco + + + + + + + + + + + + + + + + + Sky Kid (old version) + 1985 + Namco + + + + + + + + + + + + + + + + + Sky Kid (Sipem) + 1985 + Namco [Sipem license] + + + + + + + + + + + + + + + + + Sky Kid Deluxe (set 1) + 1986 + Namco + + + + + + + + + + + + + + + + + + + Sky Kid Deluxe (set 2) + 1986 + Namco + + + + + + + + + + + + + + + + + + + Sky Lancer + 1983 + Orca + + + + + + + + + Sky Lancer (Esco Trading Co license) + 1983 + Orca (Esco Trading Co license) + + + + + + + + + Sky Raiders [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Sky Robo + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + Sky Shark (US, set 1) + 1987 + Toaplan / Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Shark (US, set 2) + 1987 + Toaplan / Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Skipper + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + Sky Smasher + 1990 + Nihon System + + + + + + + + + + + + + + Sky Soldiers (bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Soldiers (US) + 1988 + Alpha Denshi Co. (SNK of America/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Wolf (set 1) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Sky Wolf (set 2) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + Sky Wolf (set 3) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Slap Fight (A76 set, GX-006-A PCB) + 1986 + Toaplan / Taito + + + + + + + + + + + + + + + + + + + + + Slap Fight (A77 set, 8606M PCB) + 1986 + Toaplan / Taito + + + + + + + + + + + + + + + + + + + + Slap Fight (bootleg set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + Slap Fight (bootleg set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + Slap Fight (bootleg set 3) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Slap Shooter + 1986 + Sega + + + + + + + + Slap Shot (Ver 2.2 J) + 1994 + Taito Corporation + + + + + + + + + + + + Slap Shot (Ver 3.0 O) + 1994 + Taito Corporation Japan + + + + + + + + + + + + Slip Stream (Brazil 950515) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + Slip Stream (Hispanic 950515) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + Slither (set 1) [Press 'P2 Start' to exit settings screen] + 1982 + Century II + + + + + + + + + + + + + + Slither (set 2) [Press 'P2 Start' to exit settings screen] + 1982 + Century II + + + + + + + + + + + + + + Sly Spy (US revision 2) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + Sly Spy (US revision 3) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + Sly Spy (US revision 4) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + Smash T.V. (rev 3.01) + 1990 + Williams + + + + + + + + + + + + + + + + + Smash T.V. (rev 4.00) + 1990 + Williams + + + + + + + + + + + + + + + + + Smash T.V. (rev 5.00) + 1990 + Williams + + + + + + + + + + + + + + + + + Smash T.V. (rev 6.00) + 1990 + Williams + + + + + + + + + + + + + + + + + Smash T.V. (rev 8.00) + 1990 + Williams + + + + + + + + + + + + + + + + + Snap Jack + 1982 + Universal + + + + + + + + + + + + + + + + Snapper (Korea) + 1990 + Philko + + + + + + + + SNK vs. Capcom - SVC Chaos (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos (JAMMA PCB, set 1) + 2003 + SNK Playmore + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos (JAMMA PCB, set 2) + 2003 + SNK Playmore + + + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos (NGM-2690)(NGH-2690) + 2003 + SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos Plus (bootleg set 1) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos Plus (bootleg set 2) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SNK vs. Capcom - SVC Chaos Super Plus (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Snow Board Championship (Version 2.0) + 1994 + Gaelco + + + + + + + + + Snow Board Championship (Version 2.1) + 1994 + Gaelco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Snow Bros. - Nick & Tom (Dooyong license) + 1990 + Toaplan (Dooyong license) + + + + + + + Snow Bros. - Nick & Tom (Japan) + 1990 + Toaplan + + + + + + + Snow Bros. - Nick & Tom (set 1) + 1990 + Toaplan + + + + + + + Snow Bros. - Nick & Tom (set 2) + 1990 + Toaplan + + + + + + + Snow Bros. - Nick & Tom (set 3) + 1990 + Toaplan + + + + + + + Snow Bros. - Nick & Tom (set 4) + 1990 + Toaplan + + + + + + + Snow Bros. - Nick & Tom (The Winter Bobble hardware bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + Snow Bros. 2 - with new elves (Hanafram) + 1994 + [Toaplan] Hanafram + + + + + + + + + Snow Bros. 2 - with new elves (Nyanko) + 1994 + [Toaplan] Nyanko + + + + + + + + + + + + Snow Brothers 3 - Magical Adventure [Bootleg] + 2002 + bootleg + + + + + + + + + + Soccer Brawl (NGH-031) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Soccer Brawl (NGM-031) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sokonuke Taisen Game (Japan) + 1995 + Sammy Industries + + + + + + + + + Sol Divide - The Sword Of Darkness + 1997 + Psikyo + + + + + + + + + + + + Sol Divide - The Sword Of Darkness (Korea) + 1997 + Psikyo + + + + + + + + + + + + Solar Fox (upright) + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + + Solar-Warrior (US) + 1986 + Technos Japan (Taito / Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Soldam + 1992 + Jaleco + + + + + + + + + + + + + + + + Soldam (Japan) + 1992 + Jaleco + + + + + + + + + + + + + + + + Soldier Girl Amazon + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Soldier Girl Amazon (Tecfri license) + 1986 + Nichibutsu (Tecfri license) + + + + + + + + + + + + + + + + + + + + + + + + Solitary Fighter (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + Solite Spirits + 1999 + Promat + + + + + + + + + + + + + + + + + + + Solomon no Kagi (Japan) + 1986 + Tecmo + + + + + + + + + + + + + + + Solomon's Key (US) + 1986 + Tecmo + + + + + + + + + + + + + + + Son of Phoenix (bootleg of Repulse) [Bootleg] + 1985 + bootleg (Associated Overseas MFR, Inc.) + + + + + + + + + + + + + + + + + + + + + + + + Son Son + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + Son Son (Japan) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Sonic Blast Man (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Sonic Blast Man (US) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sonic Boom (FD1094 317-0053 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + Sonic Boom (FD1094 317-0053) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Sonic Wings (Japan) + 1992 + Video System Co. + + + + + + + + + + + + + + Sorcer Striker + 1993 + Raizing + + + + + + + + + Sorcer Striker (Korea) + 1993 + Raizing (Unite Trading license) + + + + + + + + + Soreike Kokology (Rev A) + 1992 + Sega + + + + + + + + + + + + + + + + + + Soreike Kokology Vol. 2 - Kokoro no Tanteikyoku + 1993 + Sega + + + + + + + + + + + + + + + + + + SOS + 1980 + Namco + + + + + + Sotsugyo Shousho + 1995 + Mitchell (Atlus license) + + + + + + + + + + Souko Ban Deluxe (Japan, SB1) + 1990 + Namco + + + + + + + + + + + + + + + Space Battle (bootleg set 1) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Space Battle (bootleg set 2) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Space Battle Ship Gomorrah + 1990 + UPL + + + + + + + + + + + + + + + + + + Space Bird (bootleg) [Bootleg] + 1980 + bootleg (Karateco) + + + + + + + + + + + + + + + + + + + + Space Bomber + 1998 + Psikyo + + + + + + + + + + + + + + + + + Space Bomber (ver. B) + 1998 + Psikyo + + + + + + + + + + + + + + + + + Space Cruiser + 1981 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Space Demon + 1980 + Nintendo (Fortrek license) + + + + + + + + + + + + + + + + + + + + Space Dragon (Moon Cresta bootleg, set 1) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Space Dragon (Moon Cresta bootleg, set 2) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Space Duel (prototype) [Prototype] + 1980 + Atari + + + + + + + + + + + Space Duel (version 1) + 1980 + Atari + + + + + + + + + + + Space Duel (version 2) + 1980 + Atari + + + + + + + + + + + Space Dungeon + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + Space Dungeon (larger roms) + 1981 + Taito America Corporation + + + + + + + + + + + Space Echo (set 1) + 1980 + bootleg (Gayton Games) + + + + + + + + + + + + + + Space Echo (set 2) + 1980 + bootleg (Gayton Games) + + + + + + + + + + + + + + Space Empire (bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Space Firebird (bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + Space Firebird (Gremlin) + 1980 + Nintendo (Gremlin license) + + + + + + + + + + + + + + + + + + + + Space Firebird (rev. 02-a) + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + Space Firebird (rev. 03-e set 1) + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + Space Firebird (rev. 03-e set 2) + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + Space Firebird (rev. 04-u) + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + Space Fury (revision A) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Fury (revision B) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Fury (revision C) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Gun (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Space Gun (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Space Gun (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Space Harrier (8751 315-5163) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Harrier (Rev A, 8751 315-5163A) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Invaders '95: The Attack Of Lunar Loonies (Ver 2.5A 1995/06/14) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Space Invaders '95: The Attack Of Lunar Loonies (Ver 2.5O 1995/06/14) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version rev 1) + 1978 + Taito + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version rev 2) + 1978 + Taito + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version rev 3) + 1978 + Taito + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version rev 4) + 1978 + Taito + + + + + + + + + + + + + + + + + + + Space Invaders (TV Version rev 1) + 1978 + Taito + + + + + + + + + + + + + + + + + Space Invaders (TV Version rev 2) + 1978 + Taito + + + + + + + + + + + + + + + + + Space Invaders / Space Invaders M + 1978 + Taito / Midway + + + + + + + + + + + + + + + + + Space Invaders DX (Japan, v2.0) + 1994 + Taito Corporation + + + + + + + + + Space Invaders DX (Japan, v2.1) + 1994 + Taito Corporation + + + + + + + + + + + + + + + Space Invaders DX (US, v2.1) + 1994 + Taito Corporation + + + + + + + + + + + + + + + Space Invaders DX (Ver 2.6J 1994/09/14) (F3 Version) [Graphics issues in Cellophane mode - use parent!] + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + Space Invaders Galactica (galaxiaj hack) [Hack] + 1979 + hack + + + + + + + + + + Space Invasion (bootleg) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Space Invasion (Europe) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Space Pilot (set 1) + 1982 + bootleg + + + + + + + + + + + + + + Space Pilot (set 2) + 1982 + bootleg + + + + + + + + + + + + + + Space Position (Japan) + 1986 + Sega / Nasco + + + + + + + + + + + + + + + + + + + + Space Raider + 1982 + Universal + + + + + + + + + + + + + + + + + Space Rocks (Spanish clone of Asteroids) [Bootleg] + 1981 + Atari (J.Estevez license) + + + + + + + + Space Seeker + 1981 + Taito Corporation + + + + + + + + + + + + + + + + + + + Space Stranger + 1978 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + + + + + + + + + + Space Stranger 2 + 1979 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + + + + + Space Thunderbird [Bootleg] + 1981? + bootleg (Fortrek) + + + + + + + + + + + + + + + + Space Trek (Video Game S.A., Spanish bootleg of Scramble) [Bootleg] + 1981 + bootleg (Video Game S.A.) + + + + + + + + + + + + + + + + + Spark Man (v2.0, set 1) + 1989 + SunA + + + + + + + + + + + + + + + + + + + Sparkz (prototype) + 1992 + Atari Games + + + + + + Spartan X (Japan) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spatter (315-5xxx) + 1984 + Sega + + + + + + + + + + + + + + + + + + Speak & Rescue + 1980 + Sun Electronics + + + + + + + + + + + + + Speak & Rescue (bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + Special Criminal Investigation (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Special Criminal Investigation (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Special Criminal Investigation (World set 1) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Special Criminal Investigation (World set 2) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spectrum 2000 (horizontal, buggy) (Europe) + 2000 + Yona Tech + + + + + + + + + + + + Spectrum 2000 (vertical, Korea) + 2000 + Yona Tech + + + + + + + + + + + + Speed Ball (set 1) + 1987 + Tecfri / Desystem S.A. + + + + + + + + + + + + + Speed Ball (set 2) + 1987 + Tecfri / Desystem S.A. + + + + + + + + + + + + + Speed Ball - Contest at Neonworld (prototype) [Prototype] + 1985 + Williams + + + + + + + + + + + + + + + + + Speed Coin (prototype) [Prototype] + 1984 + Stern + + + + + + + + + + Speed Spin + 1994 + TCH + + + + + + + + + + + + Spelunker + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spelunker (Japan) + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spelunker II - 23 no Kagi (Japan) + 1986 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spider-Man: The Videogame (Japan) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + Spider-Man: The Videogame (US, Rev A) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + Spider-Man: The Videogame (World) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + Spiderman (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spin Master / Miracle Adventure + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (Japan) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (Japan, prototype 11/14 15:00) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (US) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (World) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Splat! + 1982 + Williams + + + + + + + + + + + + + + + + + + Splatter House (Japan, SH1) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Splatter House (World, new version (SH3)) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Splatter House (World, old version (SH2)) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spotty (Ver. 2.0.2) + 2001 + Prince Co. + + + + + + + + Springer + 1982 + Orca + + + + + + + + + + + + + + Spy Hunter + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spy Hunter (Playtronic license) + 1983 + Bally Midway (Playtronic license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Squash (Itisa) + 1984 + Itisa + + + + + + + + + + + + Squash (Ver. 1.0) + 1992 + Gaelco + + + + + + + + + + + + + + Stadium Cross (US) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + Stadium Cross (World) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + Stadium Cross (World, alt) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + Stadium Hero '96 (Japan, EAD) + 1996 + Data East Corporation + + + + + + + + + + + + + + Stadium Hero '96 (USA, EAH) + 1996 + Data East Corporation + + + + + + + + + + + + + + Stadium Hero '96 (World, EAJ) + 1996 + Data East Corporation + + + + + + + + + + + + + + Stadium Hero (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Stagger I (Japan) + 1998 + Afega + + + + + + + + + + Stakes Winner / Stakes Winner - GI kinzen seiha e no michi + 1995 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stakes Winner 2 + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Fighter + 1979 + Juetel + + + + + + + + + + + + + + + + Star Fighter (Moon Cresta bootleg) [Bootleg] + 198? + bootleg (Samyra Engineering) + + + + + + + + + + + + + + + + Star Fighter (v1) + 1990 + SunA + + + + + + + + + + + + + + + + + + Star Force + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + Star Force (encrypted, bootleg) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Force (encrypted, set 1) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + Star Force (encrypted, set 2) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Guards + 1987 + Bally Midway + + + + + + + + + + + + + Star Jacker (Sega) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Star Jacker (Stern) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Star Trek + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Trek (Defender bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + Star Trek (Head On hardware) [Bootleg, No sound] + 198? + bootleg (Sidam) + + + + + + + + + + + + Star Warrior + 1980 + bootleg (Potomac Mortgage) + + + + + + + + + + + + + + + + + + + + Star Wars (rev 1) + 1983 + Atari + + + + + + + + + + + + + + + + Star Wars (set 2) + 1983 + Atari + + + + + + + + + + + + + + + + Star Wars (set 3) + 1983 + Atari + + + + + + + + + + + + + + + + Stargate + 1981 + Williams / Vid Kidz + + + + + + + + + + + + + + + + + + Steal See + 2000 + Moov Generation / Eolith + + + + + + + + + + + + + + + + + + + + + + + + + Steel Force + 1994 + Electronic Devices Italy / Ecogames S.L. Spain + + + + + + + + + + + + + + + Steel Gunner (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner (Rev B) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner 2 (Japan, Rev A) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner 2 (US) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steraranger (Moon Cresta bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + + + + Stinger + 1983 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + Stinger (prototype?) + 1983 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + Stone Ball (2 Players, v1-20 21/10/1994) + 1994 + Art & Magic + + + + + + + + Stone Ball (2 Players, v1-20 7/11/1994) + 1994 + Art & Magic + + + + + + + + Stone Ball (4 Players, v1-20 13/12/1994) + 1994 + Art & Magic + + + + + + + + Stoneage (bootleg of Caveman Ninja) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + Storm Blade (Japan) + 1996 + Visco + + + + + + + + + + + + + + + + + Storm Blade (US) + 1996 + Visco + + + + + + + + + + + + + + + + + Storming Party / Riku Kai Kuu Saizensen (set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + Storming Party / Riku Kai Kuu Saizensen (set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + Strafe Bomb + 1981 + Omni + + + + + + + + + + + + + + + + + Strategy X + 1981 + Konami + + + + + + + + + + + + + + + Strategy X (Stern) + 1981 + Konami (Stern License) + + + + + + + + + + + + + + + Stratovox + 1980 + [Sun Electronics] (Taito license) + + + + + + + + + + + + + Stratovox (bootleg) [Bootleg] + 1980 + bootleg + + + + + + + + + + + + + Streaking (set 1) [Bad Colours] + 1981 + Shoei + + + + + + + + + + Streaking (set 2) [Bad Colours] + 1981 + Shoei + + + + + + + + + + + + + + + + Street Fight (bootleg?) + 1986 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fight (Germany - Benelux) + 1986 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fight (Germany) + 1986 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (Japan) (protected) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (Japan, pneumatic buttons) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (Prototype) [Prototype] + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (US set 2) (protected) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (US, set 1) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (World) (protected) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (World, pneumatic buttons) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950605 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950627 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950627 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950718 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950727 Euro Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950727 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Alpha - warriors' dreams (950727 USA Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + Street Fighter Alpha 2 (960229 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 2 (960306 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 2 (960430 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 2 - Unlock Hidden Characters (Hack By Yumeji) + 2009 + Hack + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980616 USA, SAMPLE Version) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980629 Brazil) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980629 Hispanic) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980629 USA) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980904 Euro) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980904 Hispanic) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980904 USA Phoenix Edition) [Bootleg] + 1998 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (980904 USA) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 - Xiang Long Edition (Hack by pipi899, Ver.2009-05-10) [Bootleg] + 2009 + Hack + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 1, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 2, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 3, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 4, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 5, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 6, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 7, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II - Champion Edition (Alpha Magic-F bootleg set 8, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910129 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910204 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910204 World, conversion) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910206 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910214 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910214 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910214 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910228 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910228 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910306 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910306 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910318 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910318 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910411 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910411 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910411 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910522 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910522 USA, rev G) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910522 USA, rev H) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910522 USA, rev I) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (910522 World) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (911101 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (911210 Japan, CPS-B-13) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (911210 Japan, CPS-B-17) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (911210 Japan, rev L) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (920312 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (920312 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (bootleg with rules screen, 910214 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (bootleg, 910214 etc, set 1 (with YM2151 + 2xMSM5205)) [Bootleg, row scroll issues] + 1992 + bootleg + + + + + + + + + + + Street Fighter II - The World Warrior (bootleg, 910214 etc, set 2) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (bootleg, 910214 etc, set 3) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (bootleg, 910214 etc, set 4) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Quicken bootleg, 910522 USA) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Quicken Pt-I bootleg, 910214 USA) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (RK bootleg, 910214 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (STT, TAB Austria bootleg, 910214 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (TAB Austria bootleg set 2, 910214 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (TAB Austria bootleg set 3, 910214 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (TAB Austria bootleg, 910214 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Thunder Edition bootleg, 910214 etc, set 1) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Thunder Edition bootleg, 910214 etc, set 2) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (with bosses like Champion Edition, 910522 Japan, CPS-B-11) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II Mix (v0.99a) [Hack] + 2020 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 'Taiwan' bootleg with PAL) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 etc bootleg set 1) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 etc bootleg set 2) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 1) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 10) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 11) [Bootleg, Some graphic issues due to roms] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 2) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 3) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 4) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 5) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 6) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 7) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 8) [Bootleg, Some graphic issues due to roms] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920313 USA bootleg set 9) [Bootleg, Some graphic issues due to roms] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920322 Japan bootleg set 1) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920322 Japan bootleg set 2) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (920803 USA bootleg) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Accelerator Pt.II bootleg, 920313 Testron) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Accelerator! bootleg set 1, 920313 USA) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Accelerator! bootleg set 2, 920310 Accelerator!) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (bootleg, set 1) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (bootleg, set 2) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Double K.O. Turbo II bootleg, 902140 USA) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Hungh-Hsi bootleg, 920313 Taiwan) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Level Select bootleg, 920322 USA) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Magic Delta, bootleg, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Mega Co bootleg set 1, 920313 etc) [Bootleg] + 1992 + Mega Co + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Mega Co bootleg set 2, 920313 etc) [Bootleg] + 1992 + Mega Co + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Playmark bootleg, set 2) [Bootleg] + 1992 + bootleg (Playmark) + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Playmark bootleg, set 3) [Bootleg] + 1992 + bootleg (Playmark) + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 1, 920322 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 2, 920322 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 3, 920322 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 4, 920322 Japan) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 5, 920322 Japan) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow bootleg set 6, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (RE, bootleg) [Bootleg, imperfect graphics] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Red Wave bootleg set 1, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Red Wave bootleg set 2, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Red Wave PtII bootleg, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Sheng Long v 7.3a) [Hack] + 2013 + Drakon + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920313 Taiwan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920313 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920313 World) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920322 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920513 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920513 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920513 World) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920803 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (street fighter 2' 920803 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Tu Long bootleg set 1, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Tu Long bootleg set 2, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Tu Long bootleg set 3, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (UPL bootleg) [Bootleg] + 1992 + bootleg (UPL) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (V004 bootleg set 1, 102092 USA) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (V004 bootleg set 2, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (V004 bootleg set 3, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (YYC bootleg set 1, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (YYC bootleg set 2, 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Hyper Fighting (street fighter 2' T 921209 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Hyper Fighting (street fighter 2' T 921209 World) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Magic Delta Turbo (bootleg set 1 (with YM2151 + 2xMSM5205), 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Magic Delta Turbo (bootleg set 2 (with YM2151 + 2xMSM5205), 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + Street Fighter II' - Magic Delta Turbo (bootleg set 3 (with YM2151 + 2xMSM5205), 920313 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Magic Delta Turbo (bootleg set 4 (with YM2151 + 2xMSM5205), 920313 etc) [Bootleg] + 1992 + Playmark bootleg + + + + + + + + + + + + + + Street Fighter II' - Magic KO Turbo!! - Nightmare Crack [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Xiang Long (bootleg set 1, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + Street Fighter II' - Xiang Long (bootleg set 2, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Xiang Long (bootleg set 3, 811102 001) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + Street Fighter II' Turbo - Hyper Fighting (bootleg set 1, 921209 Japan) [Bootleg] + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' Turbo - Hyper Fighting (bootleg set 2, 921209 Japan) [Bootleg] + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' Turbo - Hyper Fighting (street fighter 2' T 921209 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II': Champion Edition (Dongfang Bubai protection bootleg, etc 920313) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + Street Fighter II': Champion Edition (Playmark bootleg, set 1) [Bootleg] + 1992 + bootleg (Playmark) + + + + + + + + + + + + + + Street Fighter III 2nd Impact: Giant Attack (Asia 970930, NO CD) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 2nd Impact: Giant Attack (Japan 970930) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 2nd Impact: Giant Attack (USA 970930) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (4rd Arrange Edition 2013) [Hack] + 2013 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Euro 990512) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Euro 990608) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Japan 990512) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Japan 990512, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Japan 990608) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (Japan 990608, NO CD) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (USA 990512) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future (USA 990608) + 1999 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III 3rd Strike: Fight for the Future | re:THIRD update [Hack] + 2021 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Asia 970204) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Asia 970204, NO CD, bios set 1) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Asia 970204, NO CD, bios set 2) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Euro 970204) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Hispanic 970204) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (Japan 970204) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter III: New Generation (USA 970204) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero (950605 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950605 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950627 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950627 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950627 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950718 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950727 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (950727 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (951109 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + Street Fighter Zero (CPS Changer, 040820 Japan) + 2005 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero (CPS Changer, 951020 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960227 Asia Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960227 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960227 Japan Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960227 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960229 Oceania) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960304 Brazil) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960304 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960430 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (960531 Brazil) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (960805 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (960813 Brazil) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (960813 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (960826 Asia Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (960826 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha - Dragon Level (Hack by pipi899, Ver.2009-04-24) + 2009 + Hack + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980629 Japan Phoenix Edition) [Bootleg] + 1998 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980629 Japan) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980701 Asia) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980727 Japan) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980904 Asia) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (980904 Japan) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 Training Edition v1.1 (980629 Japan) [Hack] + 2020 + hack + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.10) + 1995 + Capcom / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.11) + 1995 + Capcom / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.12) + 1995 + Capcom / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.12N, Japan) + 1995 + Capcom / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.14N, Japan) + 1995 + Capcom / Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + Street Hoop / Street Slam / Dunk Dream (DEM-004) (DEH-004) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Smart (Japan version 1) + 1989 + SNK + + + + + + + + + + + + + + + Street Smart (US version 1) + 1989 + SNK + + + + + + + + + + + + + + + Street Smart (US version 2) + 1989 + SNK + + + + + + + + + + + + + + + + Street Smart (World version 1) + 1989 + SNK + + + + + + + + + + + + + + + Street Smart / Final Fight (Japan, hack) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + Strength & Skill + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + Strider (US set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Strider (US set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Strider (US, Street Fighter II conversion) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Strider Hiryu (Japan Resale Ver.) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Strider Hiryu (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strike Fighter (Japan) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strike Fighter (World) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strike Force (rev 1 02/25/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Strike Gunner S.T.G + 1991 + Athena / Tecmo + + + + + + + + + + + + + Strikers 1945 (Japan / World) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 (Japan) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 (Japan, unprotected) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 (Korea) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 (World) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 (World, unprotected) + 1995 + Psikyo + + + + + + + + + + + + + + Strikers 1945 II + 1997 + Psikyo + + + + + + + + + + + + + + + Strikers 1945 III (World) / Strikers 1999 (Japan) + 1999 + Psikyo + + + + + + + + + + + + + + + + Strikers 1945 Plus + 1999 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strong X [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + Stunt Air + 1983 + Nuova Videotron + + + + + + + + + + + + + + + + + Submarine (Sigma) + 1985 + Sigma Enterprises Inc. + + + + + + + + + + + + + + + + + + + + Subroc-3D + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Success Joe (World) [Incomplete sound] + 1990 + Taito Corporation / Wave + + + + + + + + + + + + + + + + + + + + + + Sukeban Jansi Ryuko (set 1, System 16A, FD1089B 317-5021) + 1987 + White Board + + + + + + + + + + + + + + + + + + + + + + + + + Sukeban Jansi Ryuko (set 2, System 16B, FD1089B 317-5021) + 1987 + White Board + + + + + + + + + + + + + + + + + + + + + + + + SunA Quiz 6000 Academy (940620-6) + 1994 + SunA + + + + + + + + + Sunset Riders (2 Players ver. ABD) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (2 Players ver. EBC) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (2 Players ver. EBD) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (2 Players ver. JBD) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (2 Players ver. UBC) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. ADD) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. EAA) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. EAC) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. JAC) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. JAD) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. UAB) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. UAC) + 1991 + Konami + + + + + + + + + + + + + + Sunset Riders (4 Players ver. UDA) + 1991 + Konami + + + + + + + + + + + + + + Super Astro Fighter (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Athena (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + Super Bagman (Itisa, Spain) + 1984 + Valadon Automation (Itisa license) + + + + + + + + + + + + + + + + + + + + + + Super Bagman (Stern Electronics) + 1984 + Valadon Automation (Stern Electronics license) + + + + + + + + + + + + + + + + + + + + + + Super Bagman (version 3?) + 1984 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + + Super Bagman (version 5) + 1984 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + + Super Bar + 1994 + Promat + + + + + + + + + + + Super Basketball (version E, encrypted) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + Super Basketball (version G, encrypted) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + Super Basketball (version H, unprotected) + 1984 + Konami + + + + + + + + + + + + + + + + + Super Basketball (version I, encrypted) + 1984 + Konami + + + + + + + + + + + + + + + + + Super Bishi Bashi Championship (ver JAA, 2 Players) [Imperfect gfx (bad priorities)] + 1998 + Konami + + + + + + + + + + + + + Super Bishi Bashi Championship (ver KAA, 3 Players) [Imperfect gfx (bad priorities)] + 1998 + Konami + + + + + + + + + + + + + Super Bishi Bashi Championship (ver KAB, 3 Players) [Imperfect gfx (bad priorities)] + 1998 + Konami + + + + + + + + + + + + + Super Bobble Bobble (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 1) [Bootleg] + 1986 + bootleg (Datsu) + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 3) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 4) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 5) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble (bootleg, set 6) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + Super Bubble 2003 (Asia, Ver 1.0) + 2003 + Limenko + + + + + + + + + + + Super Bubble 2003 (World, Ver 1.0) + 2003 + Limenko + + + + + + + + + + + Super Bubble Bobble (Sun Mixing, Megadrive clone hardware) + 199? + Sun Mixing + + + + + + Super Burger Time (Japan) + 1990 + Data East Corporation + + + + + + + + + + Super Burger Time (World, set 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + Super Burger Time (World, set 2) + 1990 + Data East Corporation + + + + + + + + + + Super Buster Bros. (USA 901001) + 1990 + Mitchell (Capcom license) + + + + + + + + + + + + + + Super Casino + 1984 + Data Amusement + + + + + + + + + + + + + + Super Champion Baseball (Japan) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + Super Champion Baseball (US) + 1989 + Alpha Denshi Co. (SNK of America license) + + + + + + + + + + + + + + + Super Chase - Criminal Termination (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Chase - Criminal Termination (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Chase - Criminal Termination (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Cobra + 1981 + Konami + + + + + + + + + + + + + + + Super Cobra (bootleg, set 1) [Bootleg] + 1981 + bootleg (Karateco) + + + + + + + + + + + + + + + + Super Cobra (bootleg, set 2) [Bootleg] + 1981 + bootleg (A.V.G. by Zaccaria) + + + + + + + + + + + + + + + Super Cobra (bootleg, set 3) [Bootleg] + 1981 + bootleg (Cocamatic) + + + + + + + + + + + + + + + Super Cobra (encrypted) + 1981 + Konami + + + + + + + + + + + + + + + Super Cobra (Sega) + 1981 + Konami (Sega license) + + + + + + + + + + + + + + + Super Cobra (Stern Electronics) + 1981 + Konami (Stern Electronics license) + + + + + + + + + + + + + + + Super Cobra (Stern Electronics) (encrypted, KONATEC XC-103SS CPU) + 1981 + Konami (Stern Electronics license) + + + + + + + + + + + + + + + Super Contra + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Contra (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Crash (bootleg of Head On) [Bootleg, No sound] + 1979 + bootleg (VGG) + + + + + + + + + Super Cross II (Japan, set 1) + 1986 + GM Shoji + + + + + + + + + + + + + + + + + + + + + + + Super Cross II (Japan, set 2) + 1986 + GM Shoji + + + + + + + + + + + + + + + + + + + + + + + Super Cup Finals (Ver 2.1O 1993/11/19, F3 Cartridge) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Super Cup Finals (Ver 2.1O 1993/11/19, single PCB) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Super Cup Finals (Ver 2.2O 1994/01/13, single PCB) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Super Dodge Ball (US) + 1987 + Technos Japan + + + + + + + + + + + + + + Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu + 1996 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu (Secret Character Hack) [Hack] + 1996 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Doubles Tennis (DECO Cassette) (Japan) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Duck + 1992 + Comad + + + + + + + + + + + + + + + + + + + + + Super Duper Casino (California V3.2) + 1987 + U.S. Games + + + + + + + Super Formula (Japan) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + Super Galaxians (galaxiaj hack) [Hack] + 1979 + hack + + + + + + + + + + Super Gem Fighter Mini Mix (970904 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + Super Gem Fighter Mini Mix (970904 Hispanic) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + Super Gem Fighter Mini Mix (970904 USA Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + Super Gem Fighter Mini Mix (970904 USA) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + Super Glob + 1983 + Epos Corporation + + + + + + + + + + + + Super Glob (Pac-Man hardware) + 1983 + Epos Corporation + + + + + + + + + + + Super Glob (Pac-Man hardware) German + 1983 + bootleg + + + + + + + + + + + + Super Hang-On (mini ride-on, FD1089B 317-0034) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (mini ride-on, Rev A, FD1089B 317-0034) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (sitdown/upright, FD1089B 317-0034 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (sitdown/upright, FD1089B 317-0034) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (sitdown/upright, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (sitdown/upright, unprotected) (Enhanced Edition v2.0.2) + 2014 + hack (Chris White) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Heli (Super Cobra bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + + + + + Super High Impact (prototype, proto 4.0 09/10/91) [Prototype] + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Super High Impact (prototype, proto 5.0 09/15/91) [Prototype] + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Super High Impact (prototype, proto 6.0 09/23/91) [Prototype] + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Super High Impact (rev LA1 09/30/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Super League (FD1094 317-0045) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Super Locomotive + 1982 + Sega + + + + + + + + + + + + + + + Super Locomotive (Rev.A) + 1982 + Sega + + + + + + + + + + + + + + + Super Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 4.0 / 990518) + 1999 + Omega System + + + + + + + + + + + Super Marukin-Ban (Japan 901017) + 1990 + Yuga + + + + + + + + + + + + Super Masters Golf (World?, Floppy Based, FD1094 317-0058-05d?) + 1989 + Sega + + + + + + + Super Model + 1994 + Comad / New Japan System + + + + + + + + + + + + + + + + Super Monaco GP (Japan, Rev A, FD1094 317-0124a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (Japan, Rev B, FD1094 317-0124a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (Japan, Rev B, FD1094 317-0124a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev A, FD1094 317-0125a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev A, FD1094 317-0125a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev B, FD1094 317-0125a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev B, FD1094 317-0125a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev C, FD1094 317-0125a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (US, Rev C, FD1094 317-0125a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, FD1094 317-0126 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, FD1094 317-0126) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, Rev A, FD1094 317-0126a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, Rev A, FD1094 317-0126a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, Rev B, FD1094 317-0126a decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Monaco GP (World, Rev B, FD1094 317-0126a) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Moon Cresta (Gremlin, bootleg) [Bootleg] + 1981? + bootleg (Gremlin) + + + + + + + + + + + + + + + + Super Mouse + 1982 + Taito Corporation + + + + + + + + + + + + + + Super Muscle Bomber - the international blowout (940808 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Muscle Bomber - the international blowout (940831 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Pac-Man + 1982 + Namco + + + + + + + + + + + + Super Pac-Man (Midway) + 1982 + Namco (Bally Midway license) + + + + + + + + + + + + Super Pang (Japan 901023) + 1990 + Mitchell + + + + + + + + + + + + + + Super Pang (World 900914) + 1990 + Mitchell + + + + + + + + + + + + + + Super Punch-Out!! (Japan) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Punch-Out!! (Rev A) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Punch-Out!! (Rev B) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Boss Hack)(USA 960620) [Hack] + 200? + Hack + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Color Blind Hack) [Hack] + 1996 + Capcom + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Super Puzzle Fighter 2 Turbo 960529 Asia) + 1996 + Capcom + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Super Puzzle Fighter 2 Turbo 960529 Euro) + 1996 + Capcom + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Super Puzzle Fighter 2 Turbo 960531 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Super Puzzle Fighter 2 Turbo 960620 USA Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + Super Puzzle Fighter II Turbo (Super Puzzle Fighter 2 Turbo 960620 USA) + 1996 + Capcom + + + + + + + + + + + + + + Super Puzzle Fighter II X (Super Puzzle Fighter 2 X 960531 Japan Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + Super Puzzle Fighter II X (Super Puzzle Fighter 2 X 960531 Japan) + 1996 + Capcom + + + + + + + + + + + + + + Super Ranger (v2.0) + 1988 + SunA + + + + + + + + + + + + + + + + + + Super Real Darwin (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + Super Real Darwin (World) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + Super Real Mahjong P7 (Japan) [No sound.] + 1997 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Real Mahjong PIV (Japan) + 1993 + Seta + + + + + + + + + + + + + + + Super Real Mahjong PIV (Japan, older set) + 1993 + Seta + + + + + + + + + + + + + + + Super Rider + 1983 + Taito Corporation (Venture Line license) + + + + + + + + + + + + + + + + + + + + + + + + + Super Shanghai Dragon's Eye (Japan) + 1992 + Hot-B Co., Ltd. + + + + + + + + + + + + + Super Shanghai Dragon's Eye (Korea) + 1992 + Hot-B Co., Ltd. (Taito license) + + + + + + + + + + + + + Super Shanghai Dragon's Eye (World) + 1992 + Hot-B Co., Ltd. + + + + + + + + + + + + + Super Shanghai Dragon's Eye (World, bootleg) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + Super Sidekicks / Tokuten Ou + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sidekicks 2 - The World Championship / Tokuten Ou 2 - real fight football (NGM-061)(NGH-061) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sidekicks 3 - The Next Glory / Tokuten Ou 3 - eikou e no michi + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Space Invaders '91 (World) + 1990 + Taito Corporation Japan + + + + + + + + + + Super Space Invaders '91 (World, earlier?) + 1990 + Taito Corporation Japan + + + + + + + + + + Super Space Invaders '91 (World, Rev 1) + 1990 + Taito Corporation Japan + + + + + + + + + + Super Spacefortress Macross / Chou-Jikuu Yousai Macross + 1992 + Banpresto + + + + + + + + + + + + + + Super Spacefortress Macross II / Chou-Jikuu Yousai Macross II + 1993 + Banpresto + + + + + + + + + + + + + Super Spacefortress Macross II / Chou-Jikuu Yousai Macross II (GAMEST review build) + 1993 + Banpresto + + + + + + + + + + + + + Super Special Criminal Investigation (Negro Torino hack) [Bootleg] + 1989 + hack (Negro Torino) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Speed Race Junior (Japan) [Weird colors] + 1985 + Taito Corporation + + + + + + + + + Super Star Crest [Bootleg] + 1980? + Nichibutsu (Taito do Brasil license) + + + + + + + + + + + + + + + + Super Stingray (Japan) + 1986 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930910 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 etc Phoenix Edition) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 etc) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 Hispanic) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 USA Phoenix Edition) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930911 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 930914 Asia) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 931005 Asia) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 931005 etc) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the new challengers (super street fighter 2 931005 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (930911 etc) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (930911 Japan) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (930911 USA) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (931005 Asia) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (931005 Hispanic) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (931005 Japan) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (931119 etc Phoenix Edition) [Bootleg, Linkup feature not implemented] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II - the tournament battle (931119 etc) [Linkup feature not implemented] + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 Asia Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 Asia) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 etc Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 etc) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 Hispanic) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940223 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo (super street fighter 2 X 940323 USA) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II Turbo New Legacy v0.4 (Beta) (Hack by Born2SPD) [Hack] + 2020 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II X - grand master challenge (super street fighter 2 X 940223 Japan Phoenix Edition) [Bootleg] + 1994 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II X - grand master challenge (super street fighter 2 X 940223 Japan rent version) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II X - grand master challenge (super street fighter 2 X 940223 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter II X - grand master challenge (super street fighter 2 X 940311 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Ten V8.2 + 1988 + U.S. Games + + + + + + + + Super Ten V8.3 + 1988 + U.S. Games + + + + + + + + Super Ten V8.3X + 1988 + U.S. Games + + + + + + + + Super Trio + 1994 + Gameace + + + + + + + + + + + + + + Super Trivia Master + 1986 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + Super Visual Football: European Sega Cup + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + Super Visual Football: European Sega Cup (Rev A) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + Super Visual Soccer: Sega Cup (US, Rev A) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + Super Volley '91 (Japan) + 1991 + Video System Co. + + + + + + + + + + Super Volleyball (Japan) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + Super Volleyball (Korea) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Volleyball (US) + 1989 + V-System Co. (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + + + Super World Court (Japan) + 1992 + Namco + + + + + + + + + + + + Super World Court (World) + 1992 + Namco + + + + + + + + + + + + Super World Court (World, bootleg) + 1994 + bootleg (Playmark?) + + + + + + + + + + + + + + + + Super World Stadium '92 (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '92 Gekitouban (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '93 (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '95 (Japan) + 1995 + Namco + + + + + + + + + + + + + + + Super World Stadium '96 (Japan) + 1996 + Namco + + + + + + + + + + + + + + + Super World Stadium '97 (Japan) + 1997 + Namco + + + + + + + + + + + + + + + Super World Stadium (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + Super Xevious (Namco) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Zaxxon + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super-X (Mitchell) + 1994 + Dooyong (Mitchell license) + + + + + + + + + + + + + + + + + Super-X (NTC) + 1994 + Dooyong (NTC license) + + + + + + + + + + + + + + + + + Supercharger 1942 + 1991 + hack (Two Bit Score) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Superior Soldiers (US) + 1993 + Irem America + + + + + + + + + + + + + + + + + + + + + + Superman (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + Superman (US) + 1988 + Taito Corporation + + + + + + + + + + + + + + + Superman (World) + 1988 + Taito Corporation + + + + + + + + + + + + + + + Surprise Attack (Asia ver. L) + 1990 + Konami + + + + + + + + + Surprise Attack (Japan ver. M) + 1990 + Konami + + + + + + + + + Surprise Attack (World ver. K) + 1990 + Konami + + + + + + + + + Survival Arts (Japan) + 1993 + Sammy + + + + + + + + + + + + + + + + + + Survival Arts (USA) + 1993 + American Sammy + + + + + + + + + + + + + + + + + + Survival Arts (World) + 1993 + Sammy + + + + + + + + + + + + + + + + + + + Susume! Mile Smile / Go Go! Mile Smile (newer) + 1995 + Fuuki + + + + + + + + + + + + + + Susume! Mile Smile / Go Go! Mile Smile (older) + 1995 + Fuuki + + + + + + + + + + + + + + Swarm (bootleg?) [Bootleg] + 1979 + Sebelectro + + + + + + + + + + + SWAT (315-5048) + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + + + + SWAT Police + 2001 + ESD + + + + + + + + + + + + + + Sweet Heart (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Swimmer (set 1) + 1982 + Tehkan + + + + + + + + + + + + + + + + + + + + + Syougi No Tatsujin - Master of Shougi + 1995 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Syusse Oozumou (Japan) + 1984 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Syvalion (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Syvalion (US, PS2 Taito Legends 2) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Syvalion (World, prototype) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Syvalion (World, PS2 Taito Legends 2) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + T.A.N.K (Bootleg, 8-way Joystick) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + T.A.N.K (Japan) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + T.N.K III (US) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + T.T Defender + 1980 + Williams (Taito Corporation license) + + + + + + + + + + + + + + T.T Fitter (Japan) + 1981 + Taito Corporation + + + + + + + + + + + + + T.T Mahjong + 1980 + Taito + + + + + + + + + + + + Tac/Scan + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Tactician (set 1) + 1982 + Konami (Sega license) + + + + + + + + + + + + + + + + + Tactician (set 2) + 1981 + Konami (Sega license) + + + + + + + + + + + + + + + + + Tag Team Wrestling + 1983 + Technos Japan (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + Tail to Nose - Great Championship + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + Taisen Hot Gimmick (Japan) + 1997 + Psikyo + + + + + + + + + + + + + + + + Taisen Hot Gimmick 3 Digital Surfing (Japan) + 1999 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + Taisen Hot Gimmick 4 Ever (Japan) + 2000 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + Taisen Hot Gimmick Kairakuten (Japan) + 1998 + Psikyo + + + + + + + + + + + + + + + + + + + + Taisen Karate Dou (Japan VS version) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Taito Cup Finals (Ver 1.0O 1993/02/28) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Taito Power Goal (Ver 2.5O 1994/11/03) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Takeda Shingen (Japan, Japanese) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + Tang Tang (ver. 0526, 26/05/2000) + 2000 + ESD + + + + + + + + + + + + + + + Tank Busters [Graphics and stuck sprite issues] + 1985 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + Tank Force (Japan) + 1991 + Namco + + + + + + + + + + + + + + + + + + + Tank Force (US, 2 Players) + 1991 + Namco + + + + + + + + + + + + + + + + + + + Tank Force (US, 4 Players) + 1991 + Namco + + + + + + + + + + + + + + + + + + + Tao Taido (set 1) + 1993 + Video System Co. + + + + + + + + + + + + Tao Taido (set 2) + 1993 + Video System Co. + + + + + + + + + + + + Tapper (Budweiser, 1/27/84 - Alternate graphics) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Tapper (Budweiser, 1/27/84) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Tapper (Budweiser, 12/9/83) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Tapper (Budweiser, Date Unknown) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Tapper (Root Beer) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Tapper (Suntory) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Target Hits (ver 1.0, Checksum FBCB) + 1994 + Gaelco + + + + + + + + + + + + + Target Hits (ver 1.1, Checksum 5152) + 1994 + Gaelco + + + + + + + + + + + + + Target Hits (ver 1.1, Checksum 86E1) + 1994 + Gaelco + + + + + + + + + + + + + Task Force Harrier + 1989 + UPL + + + + + + + + + + + + + + + + + + Task Force Harrier (US) + 1989 + UPL (American Sammy license) + + + + + + + + + + + + + + + + + + Tatakae Genshizin Joe & Mac (Japan ver 1) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tatakae! Big Fighter (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + Tatakai no Banka (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tattoo Assassins (Asia prototype) + 1994 + Data East Pinball + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tattoo Assassins (US prototype) + 1994 + Data East Pinball + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tazz-Mania (bootleg on Galaxian hardware with Starfield) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + + + + + Tazz-Mania (bootleg on Galaxian hardware) [Bootleg] + 1982 + bootleg + + + + + + + + + + + + Tazz-Mania (set 1) + 1982 + Stern + + + + + + + + + + + + + Tazz-Mania (set 2) + 1982 + Stern + + + + + + + + + + + + + Tecmo Bowl (Japan) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Bowl (World, prototype?) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Bowl (World, set 1) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Bowl (World, set 2) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Knight + 1989 + Tecmo + + + + + + + + + + + + + Tecmo World Soccer '96 + 1996 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TeddyBoy Blues (315-5115, New Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + TeddyBoy Blues (315-5115, Old Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + TeddyBoy Blues (bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 2 Players, version ?) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 2 Players, version U) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 4 Players, version ?) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 4 Players, version F) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 4 Players, version S) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles - Turtles in Time (2 Players ver. EBA) + 1991 + Konami + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles - Turtles in Time (4 Players ver. EAA) + 1991 + Konami + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Asia 4 Players, version ?) + 1990 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Intro demo) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Intro demo, alt) [Demo, You must use the Universe BIOS and set region to Japan AES] + 2009 + Sergi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Japan 2 Players, version 1) + 1990 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Japan 4 Players, version 2) + 1990 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Oceania 2 Players, version ?) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (US 4 Players, version H) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (US 4 Players, version J) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (US 4 Players, version N) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (US 4 Players, version R) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (World 4 Players, version X) + 1989 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver. UDA) + 1991 + Konami + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver. ADA) + 1991 + Konami + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver. UAA) + 1991 + Konami + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver. UEA) + 1991 + Konami + + + + + + + + + + + + + + + + Teki Paki + 1991 + Toaplan + + + + + + + + Teki Paki (location test) + 1991 + Toaplan + + + + + + + + Tel Jan + 1999 + Electro Design + + + + + + + + + + + + + + + Tempest (rev 1) + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + + + Tempest (rev 1, Revised Hardware) + 1980 + Atari + + + + + + + + + + + + + + + + + Tempest (rev 2) + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + + + Tempest (rev 3) + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + + + Tempest (rev 3, Revised Hardware) + 1980 + Atari + + + + + + + + + + + + + + + + + Tempest Tubes + 1980 + hack (Duncan Brown) + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau (Japan Resale Ver.) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (921031 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (CPS Changer, 921031 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (hack, 921031 Japan) [Hack] + 1992 + hack + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (Master Edition, Hack) [Hack] + 2021-02-24 + Hack + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (PS/SS Version) + 2019 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tengai (World) + 1996 + Psikyo + + + + + + + + + + + + + + Tengai + 1996 + Psikyo + + + + + + + + + + + + + + Terminator 2 - Judgment Day (German, rev LG1 11/04/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (prototype, rev PA2 10/18/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA1 11/01/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA2 12/09/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA3 03/27/92) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA4 08/03/92) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM2203) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM3526 set 1) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM3526 set 2) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM3526 set 3) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terra Force + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + Terra Force (Japan) + 1987 + Nichibutsu Japan + + + + + + + + + + + + + + + + + + + Terra Force (Japan, bootleg set 2) [Bootleg, imperfect graphics] + 1987 + bootleg + + + + + + + + + + + + + + + + + Terra Force (Japan, bootleg with additional Z80) [imperfect graphics] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + Terra Force (US) + 1987 + Nichibutsu USA + + + + + + + + + + + + + + + + + + + Terranean (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Test Tape (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tetris (bootleg set 1) [Bootleg] + 1988 + bootleg + + + + + + Tetris (bootleg set 2) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + Tetris (bootleg) [Bootleg] + 1988 + bootleg + + + + + + + + + + + Tetris (cocktail set 1) + 1989 + Atari Games + + + + + Tetris (cocktail set 2) + 1989 + Atari Games + + + + + Tetris (D.R. Korea) [Wrong colors] + 198? + D.R. Korea + + + + + + + + + + + + Tetris (Japan, B-System, YM2203) + 1989 + Sega + + + + + + + + + + Tetris (Japan, B-System, YM2610) [buggy - use parent!] + 1989 + Sega + + + + + + + + + + + + Tetris (Japan, System E) + 1988 + Sega + + + + + + Tetris (Japan, Taito H-System) + 1988 + Sega + + + + + + + + + + + + + + + + + Tetris (set 1) + 1988 + Atari Games + + + + + Tetris (set 1, Japan, System 16B, FD1094 317-0091 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + Tetris (set 1, Japan, System 16B, FD1094 317-0091) + 1988 + Sega + + + + + + + + + + + + Tetris (set 2) + 1988 + Atari Games + + + + + Tetris (set 2, Japan, System 16B, FD1094 317-0092 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + Tetris (set 2, Japan, System 16B, FD1094 317-0092) + 1988 + Sega + + + + + + + + + + + + + Tetris (set 3, Japan, System 16A, FD1094 317-0093a decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + Tetris (set 3, Japan, System 16A, FD1094 317-0093a) + 1988 + Sega + + + + + + + + + + + + Tetris (set 4, Japan, System 16A, FD1094 317-0093 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + Tetris (set 4, Japan, System 16A, FD1094 317-0093) + 1988 + Sega + + + + + + + + + + + + Tetris / Bloxeed (Korean System 16 bootleg) (ISG Selection Master Type 2006) + 2006 + ISG + + + + + Tetris Plus (ver 1.0) + 1995 + Jaleco / BPS + + + + + + + + + + + + + + + + Tetris Plus 2 (Japan, V2.1) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + Tetris Plus 2 (Japan, V2.2) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + Tetris Plus 2 (ver 1.0, MegaSystem 32 Version) + 1997 + Jaleco + + + + + + + + + + + + + + + Tetris Plus 2 (World, V2.7) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + Tetris Plus 2 (World, V2.8) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + Tetris the Absolute The Grand Master 2 + 2000 + Arika + + + + + + + + + + + + + + + + + + + + + + + Tetris the Absolute The Grand Master 2 Plus + 2000 + Arika + + + + + + + + + + + + + + + + + + + + + + + TH Strikes Back (Non North America, Version 1.0, Checksum 020E0867) + 1994 + Gaelco + + + + + + + + + TH Strikes Back (Non North America, Version 1.0, Checksum 020EB356) + 1994 + Gaelco + + + + + + + + + The Alphax Z (Japan) + 1986 + Ed Co., Ltd. (Wood Place Co., Ltd. license) + + + + + + + + + + + + + + + + + + + + + The Amazing Adventures of Mr. F. Lea + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Anteater (UK) + 1983 + Free Enterprise Games + + + + + + + + + + The Astyanax + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Battle-Road + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Berlin Wall + 1991 + Kaneko + + + + + + + + + + + + + + + + + + + + + The Berlin Wall (bootleg ?) [Bootleg] + 1991 + Kaneko + + + + + + + + + + + + + + + + + + + + + The Berlin Wall (Korea) + 1991 + Kaneko (Inter license) + + + + + + + + + + + + + + + + + + + + + The Big Pro Wrestling! + 1983 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + The Billiards [Bootleg] + 1981 + bootleg + + + + + + + + + + + The Bounty + 1982 + Orca + + + + + + + + + + + + + + The Bounty (set 2) + 1982 + Orca + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (Japan ver 3) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (World ver 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (World ver 2) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (World ver 3) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Combatribes (bootleg set 1) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + The Combatribes (bootleg set 2) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Combatribes (Japan) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + The Combatribes (US , rev 1) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + The Combatribes (US, rev 2, set 1) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + The Combatribes (US, rev 2, set 2) + 1990 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + The Dealer [Incorrect Colors] + 198? + Epos Corporation + + + + + + + + The Deep (Japan) + 1987 + Woodplace Inc. + + + + + + + + + + + + + + + + + + + The Double Dynamites (Japan, 13NOV89) + 1989 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Double Dynamites (US, 13NOV89) + 1989 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Electric Yo-Yo (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + The Electric Yo-Yo (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + The Empire Strikes Back + 1985 + Atari Games + + + + + + + + + + + + + + + + + The End + 1980 + Konami + + + + + + + + + + + + + + The End (SegaSA / Sonic) + 1981 + bootleg (Sonic) + + + + + + + + + + + + + + The End (Stern) + 1980 + Konami (Stern license) + + + + + + + + + + + + + + The Eye of Typhoon Demo [Demo, Homebrew] + 2021 + OzzyOuzo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The FairyLand Story + 1985 + Taito + + + + + + + + + + + + + + + + + The FairyLand Story (Japan) + 1985 + Taito + + + + + + + + + + + + + + + + + The Final Round (ver. L) + 1988 + Konami + + + + + + + + + + + + + The Final Round (ver. M) + 1988 + Konami + + + + + + + + + + + + + The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise (ver 1.0) + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + The Gladiator - Road Of The Sword / Shen Jian (V100) [Incomplete Dump] + 2003 + IGS + + + + + + + + + + + + + + + + + + + + The Gladiator - Road Of The Sword / Shen Jian (V100, Japan, Single PCB Version) + 2003 + IGS + + + + + + + + + + + + + + + + + + The Gladiator - Road Of The Sword / Shen Jian (V100, Taiwan) [Incomplete Dump] + 2003 + IGS + + + + + + + + + + + + + + + + + + + + The Gladiator - Road Of The Sword / Shen Jian (V101, China) [Incomplete Dump] + 2003 + IGS + + + + + + + + + + + + + + + + + + + + The Gladiator - Road Of The Sword / Shen Jian (V101, Japan, Single PCB Version) + 2003 + IGS + + + + + + + + + + + + + + + + + + The Glob + 1983 + Epos Corporation + + + + + + + + + + + + The Glob (earlier) + 1983 + Epos Corporation + + + + + + + + + + + + The Glob (Pac-Man hardware) + 1983 + Epos Corporation + + + + + + + + + + + The Glob (Pac-Man hardware, bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + The Glob (set 3) + 1983 + Epos Corporation + + + + + + + + + + + + The Great Ragtime Show (Japan v1.3, 92.11.26) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + The Great Ragtime Show (Japan v1.5, 92.12.07) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + The Guiness (Japan) + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + The Hustler (Japan, program code J) + 1987 + Konami + + + + + + + + The Hustler (Japan, program code M) + 1987 + Konami + + + + + + + + The Irem Skins Game (US set 1) + 1992 + Irem America + + + + + + + + + + + + + + + + + + + + + + + + The Irem Skins Game (US set 2) + 1992 + Irem America + + + + + + + + + + + + + + + + + + + + + + + + The Irritating Maze / Ultra Denryu Iraira Bou + 1997 + SNK / Saurus + + + + + + + + + + + + + The J.League 1994 (Japan) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + The J.League 1994 (Japan, Rev A) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + The Karate Tournament + 1992 + Mitchell + + + + + + + + + + + The Killing Blade (V104) + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + + + + The Killing Blade (V106) + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + + + + The Killing Blade (V109 alt, China) + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + + + + The Killing Blade (V109, China) + 1998 + IGS + + + + + + + + + + + + + + + + + + + + + The Killing Blade Plus (V300, China) + 2005 + IGS + + + + + + + + + + + + + + + + + + + The King of Dragons (910731 etc) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (bootleg, 910731 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + The King of Dragons (hack) [Hack] + 2002 + Capcom + + + + + + + + + + + + + + + + The King of Dragons (Japan 910805, B-Board 89625B-1) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (Japan 910805, B-Board 90629B-3) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (Phoenix bootleg, 910731 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (US 910910) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (World 910711) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (World 910805) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '94 (Hack Boss Remixed) [Hack] + 1994 + ZKW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '94 (NGM-055)(NGH-055) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (Enable Hidden Characters V.[?]) [Hack] + 1995 + Ydmis & Creamymami[EGCG] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (NGH-084) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (NGH-084, alternate board) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (NGM-084) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (Special 2017, hack) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (Anniversary Edition, EGHT hack) [Hack] + 2007 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (bootleg / hack) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (Chinese Edition ver 1.0, hack) [Hack] + 200? + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (NGH-214) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (NGM-214) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (NGM-214, alternate board) + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 (The Anniversary Edition 2.0, Build 2.3.0320) [Hack] + 2019 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (10th Anniversary Chinese Edition, EGHT hack) [Hack] + 2007 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Imitation Playstation final improved version 2016-10-29) [Hack] + 1997 + Eddids + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Invincible Plus) [Hack] + 2019 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Korean release) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (NGH-2320) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (NGM-2320) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Optimised Edition 2020) [Hack] + 2020 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Optimized Edition) [Hack] + 2014 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (Practice Mode) [Hack, need AES for practice mode] + 1997 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 - Anniversary Edition (Build 2.1.0212) [Hack] + 2018 + EGHT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 - Anniversary Edition (Fork Build 2.1.1811) [Hack] + 2020-08-10 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 - Combo Training (Hack, Ver. 2018) [Hack] + 2019 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 - Final Battle (hack) [Hack] + 2007 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 - Random Combo (Hack, Ver. 2010) [Hack] + 2019 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 oroshi plus 2003 [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 Plus (bootleg) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 Plus 2003 (bootleg / hack) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Anniversary Edition build 1.2.0827) [Hack] + 2016 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Anniversary Edition, EGHT hack) [Hack] + 2007 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Combo Plus) [Hack] + 2020 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Combo, hack) [Hack] + 2018 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Plus Final Edition 2017-07-23) [Hack] + 2019-09-10 + GSC2007 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 (Ultimate Match) [Hack] + 2020 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (Korean board, set 1) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (Korean board, set 2) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (NGH-2420) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (NGM-2420) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (NGM-2420, alternate board) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 Easy Combo King (YZKOF Version, Hack) [Hack] + 2020-04-09 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 Easy Combo King 2014 (Versus Version, Hack) [Hack] + 2019-02-17 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 Mix (2015-12-29) [Hack] + 2015 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (earlier) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (Korean release) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (Korean release, non-encrypted program) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (NGH-2510) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (NGM-2510) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (prototype) [Prototype] + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 Anniversary Edition (hack) [Hack] + 2020-04-07 + Yashional + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 Evolution Ultra Remix (Hack By Yashional) [Hack] + 201? + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 Remix Pro V2.0 Final (Hack By FCHT) [Hack] + 2006 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 Summer Revolution (Hack By FCHT) [Hack] + 200? + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 10th Anniversary (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 10th Anniversary (The King of Fighters 2002 bootleg / Fully Decrypted) [Hack] + 200? + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 10th Anniversary 2005 Unique (bootleg) [Bootleg] + 2004 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 10th Anniversary 2019 (Optimized version 2019, hack) [Hack] + 2020-11-11 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 10th Anniversary Extra Plus (bootleg) [Bootleg] + 2005 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 (NGM-2570) (NGH-2570) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 (not encrypted) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 (OTC, hack) [Hack, ZERO only enabled in AES mode] + 2020-06-15 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 (Playstation 2 ver. , EGHT hack) [Hack, hack only enable in AES mode] + 2000 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 - Special Edition (Final Version, Hack) [Hack] + 2021 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 (NGH-2621) + 2001 + SNK / Eolith + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 (NGM-262?) + 2001 + SNK / Eolith + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 (PS2 Krizalid Edition) [Hack, hack only enable in AES mode] + 2019-12-12 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 Plus (set 1, bootleg / hack) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 Plus (set 2, bootleg / hack) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (NGM-2650)(NGH-2650) + 2002 + Eolith / Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (Omega v.0?) [Hack] + 2002 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (Omega v0.8) [Hack] + 2010 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (Omega v0.9 beta) [Hack] + 2011 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (Omega v0.9) [Hack] + 2012 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (PlayStation 2 v1.0 Public Beta) [Hack, hack only enable in AES mode, imperfect sound] + 2018-12-17 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (PlayStation 2 ver 0.4, EGHT hack) [Hack] + 2007 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (PlayStation 2, Hack) [Hack, hack only enabled in AES mode] + 2018 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 (Plus 2017, Hack) [Hack] + 2020-10-22 + Hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 - 3rd Strike of Orochi (Hack by EGCG/EGHT) [Hack] + 2020-06-14 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Magic Plus (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Magic Plus II (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Plus (bootleg set 1) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Plus (bootleg set 2) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Plus (bootleg set 3) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Remix Ultra 3.5 (Hack By FCHT) [Hack] + 2006 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2002 Super (bootleg) [Bootleg] + 2002 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2003 (bootleg set 1) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2003 (bootleg set 2) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2003 (Japan, JAMMA PCB) + 2003 + Playmore / Capcom + + + + + + + + + + + + + + + + + The King of Fighters 2003 (NGH-2710) + 2003 + SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2003 (NGM-2710) + 2003 + SNK Playmore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2003 PlayStation 2 (Hack By EGCG) [Hack, Use AES (Console) mode!] + 2006 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2004 Plus / Hero (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2004 Ultra Plus (bootleg) [Bootleg] + 2003 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters Special Edition 2004 (bootleg) [Bootleg] + 2004 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters Special Edition 2004 Plus (bootleg) [Bootleg] + 2004 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGH-2340) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGM-2340) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGM-2340, alternate board) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade / Bakumatsu Roman - Gekka no Kenshi (Special 2017, hack) [Hack] + 2017 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (Enable Hidden Characters V4) [Hack] + 1998 + Dodowang[EGCG] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (Enhanced Hack) [Hack] + 1998 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (NGM-2430)(NGH-2430) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (Team Edition Hack) [Hack] + 1998 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Last Day (set 1) + 1990 + Dooyong + + + + + + + + + + + + + + + + + + + The Last Day (set 2) + 1990 + Dooyong + + + + + + + + + + + + + + + + + + + The Last Soldier (Korean release of The Last Blade) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Legend of Kage + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + The Legend of Kage (bootleg set 1) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + The Legend of Kage (bootleg set 2) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + The Legend of Kage (bootleg set 3) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + The Legend of Kage (bootleg set 4) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + The Legend of Kage (older) + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + The Legend of Kage (oldest) + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + The Legend of Silkroad + 1999 + Unico + + + + + + + + + + + + + + + + + + + The Legend of Silkroad (larger roms) + 1999 + Unico + + + + + + + + + + + + + + + + The Lord of King (Japan) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Lost Castle In Darkmist + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + The Main Event (2 Players ver. X) + 1988 + Konami + + + + + + + + + + + + + + The Main Event (4 Players ver. F) + 1988 + Konami + + + + + + + + + + + + + + The Main Event (4 Players ver. Y) + 1988 + Konami + + + + + + + + + + + + + + The Masters of Kin [Colors are wrong] + 1988 + Du Tech + + + + + + + + + + + + + + + + + + The NewZealand Story (Japan, new version, newer PCB) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + The NewZealand Story (Japan, old version) (older PCB) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + The NewZealand Story (US, old version) (older PCB) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + The NewZealand Story (World, newer) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + The NewZealand Story (World, old version) (older PCB) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + The NewZealand Story (World, prototype) (older PCB) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + The NewZealand Story (World, unknown version) (older PCB) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + The Next Space (Japan) + 1989 + SNK (Pasadena International Corp. license) + + + + + + + + + + + + + The Next Space (set 1) + 1989 + SNK + + + + + + + + + + + + + The Next Space (set 2) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + The Ninja Kids (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + The Ninja Kids (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + The Ninja Kids (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + The Ninja Warriors (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Ninja Warriors (US, Romstar license) + 1987 + Taito Corporation America (licensed to Romstar) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Ninja Warriors (World, earlier version) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Ninja Warriors (World, later version) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Outfoxies (Japan, OU1) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + The Outfoxies (Korea?) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + The Outfoxies (World, OU2) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + The Percussor + 1981 + Orca + + + + + + + + + + + + + + + The Pit + 1982 + Zilec Electronics + + + + + + + + + + + + The Pit (bootleg on Moon Quasar hardware) [Bootleg] + 198? + bootleg (KZH) + + + + + + + + + + + + + + + The Pit (Japan) + 1982 + Zilec Electronics (Taito license) + + + + + + + + + + + + + The Pit (US set 1) + 1982 + Zilec Electronics (Centuri license) + + + + + + + + + + + + The Pit (US set 2) + 1982 + Zilec Electronics (Centuri license) + + + + + + + + + + + + The Punisher (930422 Hispanic) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (930422 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (930422 USA) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (930422 World) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (bootleg set 1 (with PIC16c57), 930422 etc) [Bootleg, No sound] + 1993 + bootleg + + + + + + + + + + + + + + + + + The Punisher (bootleg set 2 (with PIC16c57), 930422 etc) [Bootleg, No sound] + 1993 + bootleg + + + + + + + + + + + + The Punisher (bootleg set 3 (with PIC16c57), 930422 etc) [Bootleg, No sound] + 1993 + bootleg + + + + + + + + + The Punisher (bootleg, 930422 etc) [Bootleg] + 1993 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + The Real Ghostbusters (US 2 Players) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + The Real Ghostbusters (US 2 Players, revision 2) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + The Real Ghostbusters (US 3 Players, revision 3B?) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + The Return of Ishtar + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + The Simpsons (2 Players Asia) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (2 Players Japan) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (2 Players World, set 1) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (2 Players World, set 2) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (2 Players World, set 3) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (4 Players Asia) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (4 Players World, set 1) + 1991 + Konami + + + + + + + + + + + + + + + + + The Simpsons (4 Players World, set 2) + 1991 + Konami + + + + + + + + + + + + + + + + + The Speed Rumbler (set 1) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Speed Rumbler (set 2) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Speed Rumbler (set 3) + 1986 + Capcom (Tecfri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Super Spy (NGM-011)(NGH-011) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Three Stooges In Brides Is Brides (set 1) + 1984 + Mylstar + + + + + + + + + + + + + + + + The Three Stooges In Brides Is Brides (set 2) + 1984 + Mylstar + + + + + + + + + + + + + + + + The Tin Star (A10, 4 PCB version) + 1983 + Taito Corporation + + + + + + + + + + + + + + + The Tin Star (TS, 5 PCB version) + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + The Togyu (315-5065, Japan) + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + The Tower of Druaga (New Ver.) + 1984 + Namco + + + + + + + + + + + + + The Tower of Druaga (Old Ver.) + 1984 + Namco + + + + + + + + + + + + + The Tower of Druaga (Sidam) + 1984 + bootleg? (Sidam) + + + + + + + + + + + + + The Ultimate 11 - The SNK Football Championship / Tokuten Ou - Honoo no Libero + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Winter Bobble (bootleg) [Bootleg] + 1990 + bootleg + + + + + + + + + + + + + + + + Thief + 1981 + Pacific Novelty + + + + + + + + + + + + + + + + + Thrash Rally (ALM-003)(ALH-003) + 1991 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (bootleg set 1, wonder 3 910520 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (bootleg set 2, wonder 3 910520 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + Three Wonders (bootleg set 3, wonder 3 910520 etc) [Bootleg] + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (wonder 3 910513 etc) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (wonder 3 910520 etc) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (wonder 3 910520 USA) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder & Lightning + 1990 + Seta + + + + + + + + + + + Thunder Blade (deluxe/standing, unprotected) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Blade (upright, FD1094 317-0056 decrypted) [Bootleg] + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Blade (upright, FD1094 317-0056) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Blaster (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + Thunder Ceptor + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Ceptor II + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross (set 1) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross (set 2) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross (set 3) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross II (Asia) + 1991 + Konami + + + + + + + + + + + + Thunder Cross II (Japan) + 1991 + Konami + + + + + + + + + + + + Thunder Cross II (World) + 1991 + Konami + + + + + + + + + + + + Thunder Dragon (4th Jun. 1991, protected) + 1991 + NMK (Tecmo license) + + + + + + + + + + + + + + Thunder Dragon (8th Jan. 1992, unprotected) + 1991 + NMK (Tecmo license) + + + + + + + + + + + + + + Thunder Dragon (bootleg) + 1991 + bootleg + + + + + + + + + + + + Thunder Dragon 2 (1st Oct. 1993) + 1993 + NMK + + + + + + + + + + + + + Thunder Dragon 2 (9th Nov. 1993) + 1993 + NMK + + + + + + + + + + + + + Thunder Dragon 3 (bootleg of Thunder Dragon 2) + 1996 + bootleg (Conny Co Ltd.) + + + + + + + + + + + + + + Thunder Fox (Japan) [NULL] + 1990 + Taito Corporation + + + + + + + + + + + + + + Thunder Fox (US) [NULL] + 1990 + Taito America Corporation + + + + + + + + + + + + + + Thunder Fox (World) [NULL] + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Thunder Heroes + 2001 + Primetec Investments + + + + + + + + + + + + + Thunder Hoop (Ver. 1) + 1992 + Gaelco + + + + + + + + + + + + + + Thunder Zone (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Zone (World 4 Players) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Zone (World) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Zone (World, Rev 1) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thundercade / Twin Formation + 1987 + Seta (Taito license) + + + + + + + + + + + + + + + + ThunderJaws (rev 2) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ThunderJaws (rev 3) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (bootleg set 1) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Tiger Heli (bootleg set 2) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Tiger Heli (bootleg set 3) [Bootleg] + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Tiger Heli (Japan) + 1985 + Toaplan / Taito + + + + + + + + + + + + + + + + + + + + + Tiger Heli (US) + 1985 + Toaplan / Taito America Corp. + + + + + + + + + + + + + + + + + + + + + + Tiger Road (US bootleg, set 1) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Tiger Road (US bootleg, set 2) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Road (US) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + Tiger Road (US, Romstar license) + 1987 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + Timber + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Time Fighter (Time Pilot conversion on Galaxian hardware) [Bad Colours] + 198? + Taito do Brasil + + + + + + + + + + + + + + Time Killers (v1.00) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Time Killers (v1.21) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Time Killers (v1.21, alternate ROM board) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Time Killers (v1.31) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Time Killers (v1.32) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Time Killers (v1.32I) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Time Limit + 1983 + Chuo Co. Ltd + + + + + + + + + + + + + + + + + + + Time Pilot + 1982 + Konami + + + + + + + + + + + + + + Time Pilot '84 (set 1) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + Time Pilot '84 (set 2) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + Time Pilot '84 (set 3) + 1984 + Konami + + + + + + + + + + + + + + + Time Pilot (Atari) + 1982 + Konami (Atari license) + + + + + + + + + + + + + + Time Pilot (Centuri) + 1982 + Konami (Centuri license) + + + + + + + + + + + + + + Time Scanner (set 1, System 16A, FD1089B 317-0024) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Time Scanner (set 2, System 16B) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Time Soldiers (US Rev 1) + 1987 + Alpha Denshi Co. (SNK/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + Time Soldiers (US Rev 3) + 1987 + Alpha Denshi Co. (SNK/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + Time Tunnel + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Time's Up Demo [Homebrew] + 2012 + NGF Dev. Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tinkle Pit (Japan) + 1993 + Namco + + + + + + + + + + + + + + Tip Top + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Titan (Pac-Man hack) + 1981 + hack + + + + + + + + + + + + + + + + + + + Title Fight (Japan) [Background GFX Issues] + 1992 + Sega + + + + + + + + + + + + + + + + + Title Fight (US) [Background GFX Issues] + 1992 + Sega + + + + + + + + + + + + + + + + + Title Fight (World) [Background GFX Issues] + 1992 + Sega + + + + + + + + + + + + + + + + + Toki (bootleg) + 1989 + bootleg (Datsu) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toki (US, prototype?) + 1989 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toki (US, set 1) + 1989 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + + + Toki (US, set 2) + 1989 + TAD Corporation (Fabtek license) + + + + + + + + + + + + + + + + + + Toki (World, set 1) + 1989 + TAD Corporation + + + + + + + + + + + + + + + + + + Toki (World, set 2) + 1989 + TAD Corporation + + + + + + + + + + + + + + + + + + Toki no Senshi - Chrono Soldier (MC-8123, 317-0040) + 1987 + Sega + + + + + + + + + + + + + + + + + + + Toki no Senshi - Chrono Soldier (prototype) + 1987 + Sega + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation (bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation (newer) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation (older) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation (US) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokushu Butai Jackal (Japan, 8-way Joystick) + 1986 + Konami + + + + + + + + + + + + Tokusyu Butai U.A.G. (Japan) + 1987 + Seta (Taito license) + + + + + + + + + + + + + + + + Tom Tom Magic + 1997 + Hobbitron T.K.Trading Co. Ltd. + + + + + + + + + + + + + Toobin' (Europe, rev 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (Europe, rev 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (German, rev 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (rev 1) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (rev 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (rev 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Gunner (bootleg, Rotary Joystick) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Top Gunner (US, 8-way Joystick) + 1986 + Konami + + + + + + + + + + + + Top Hunter - Roddy & Cathy (NGH-046) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Hunter - Roddy & Cathy (NGM-046) + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Player's Golf (NGM-003)(NGH-003) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Racer (bootleg of Driving Force) [Bootleg] + 1985 + bootleg (EMT Germany) + + + + + + + + + + Top Ranking Stars (Ver 2.1J 1993/05/21) (New Version) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (Ver 2.1J 1993/05/21) (Old Version) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (Ver 2.1O 1993/05/21) (New Version) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (Ver 2.1O 1993/05/21) (Old Version) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Top Secret (Japan, old revision) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Secret (Japan, revision B) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Shooter + 1993 + Sun Mixing + + + + + + Top Speed (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + Top Speed (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toppy & Rappy + 1996 + SemiCom + + + + + + + + + + + + + Tora e no Michi (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + Toride II (Japan) [No sound] + 1994 + Metro + + + + + + + + + + + Toride II Adauchi Gaiden + 1994 + Metro + + + + + + + + + + + Toride II Adauchi Gaiden (German) + 1994 + Metro + + + + + + + + + + + Toride II Bok Su Oi Jeon Adauchi Gaiden (Korea) + 1994 + Metro + + + + + + + + + + + Tornado (DECO Cassette) (US) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tornado (set 1, Defender bootleg) [Bootleg] + 1980 + bootleg (Jeutel) + + + + + + + + + + + Toryumon + 1994 + Sega / Westone + + + + + + + + + + + + + + + + + + Total Carnage (prototype, proto v 1.0 01/25/92) [Prototype] + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Total Carnage (rev LA1 03/10/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + Touch & Go (earlier revision) + 1995 + Gaelco + + + + + + + + + + + Touch & Go (Korea, unprotected) + 1995 + Gaelco + + + + + + + + + Touch & Go (Non North America) + 1995 + Gaelco + + + + + + + + + + + Touch & Go (World) + 1995 + Gaelco + + + + + + + + + + + TouchDown Fever (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + TouchDown Fever (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + TouchDown Fever 2 + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + TouchDown Fever 2 (bootleg) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tough Turf (set 1, US, 8751 317-0099) + 1989 + Sega / Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + Tough Turf (set 2, Japan, 8751 317-0104) + 1989 + Sega / Sunsoft + + + + + + + + + + + + + + + + + + + + + Toukidenshou - Angel Eyes (VER. 960427) + 1996 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Toukidenshou - Angel Eyes (VER. 960614) + 1996 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Tournament Arkanoid (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + Tournament Pro Golf (DECO Cassette) (Japan) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tournament Pro Golf (DECO Cassette) (US) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toushin Blazers (Japan, Tecmo license) + 1991 + Video System Co. (Tecmo license) + + + + + + + + + + + + + + + + Toy Land Adventure + 2001 + SemiCom + + + + + + + + + + Toypop + 1986 + Namco + + + + + + + + + + + + + + + + Track & Field + 1983 + Konami + + + + + + + + + + + + + + + + + + + + Track & Field (Centuri) + 1983 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + Track & Field (NZ bootleg?) + 1982 + bootleg? (Goldberg Enterprizes Inc.) + + + + + + + + + + + + + + + + + + + + Transformer + 1986 + Sega + + + + + + + + Traverse USA (bootleg) + 1983 + bootleg (I.P.) + + + + + + + + + + + + + + + + + Traverse USA / Zippy Race + 1983 + Irem + + + + + + + + + + + + + + + + + Treasure Hunt + 1982 + Hara Industries + + + + + + + + + + + + + + + + Treasure Island (DECO Cassette) (unk) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Treasure Island (DECO Cassette) (US) (set 1) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Treasure Island (DECO Cassette) (US) (set 2) + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Treasure of the Caribbean + 2011 + FACE Corporation / N.C.I - Le Cortex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tri-Pool (Casino Tech) + 1981 + Noma (Casino Tech license) + + + + + + + + + + + + + Tri-Pool (Costal Games) + 1981 + Noma (Costal Games license) + + + + + + + + + + + + + Trick Trap (World?) + 1987 + Konami + + + + + + + + + + Tricky Doc (set 1) + 1987 + Tecfri + + + + + + + + + + + + + + + Tricky Doc (set 2) + 1987 + Tecfri + + + + + + + + + + + + + + + Trigon (Japan) + 1990 + Konami + + + + + + + + + + + Triki Triki (Lover Boy bootleg) [Bootleg] + 1993 + bootleg (DDT Enterprise Inc) + + + + + + + + + + + + + Trio The Punch - Never Forget Me... (Japan) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Trio The Punch - Never Forget Me... (World) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Triple Draw Poker [Bootleg] + 1983 + Design Labs / Thomas Automatics + + + + + + + + + + + + Triple Fun + 1993 + bootleg + + + + + + + + + + + + + + Triple Punch (set 1) + 1982 + KKI + + + + + + + + + + Triple Punch (set 2) + 1982 + KKK + + + + + + + + + + Trivia Genius + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Trivia Master (set 1) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + Trivia Master (set 2) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + Trivia Master (set 3) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + Trivia Master (set 4) + 1985 + Enerdyne Technologies Inc. + + + + + + + + + + + + + + + + + + + Trog (prototype, rev 4.00 7/27/90) [Prototype] + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (prototype, rev PA5-PAC 8/28/90) [Prototype] + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (prototype, rev PA6-PAC 9/09/90) [Prototype] + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (rev LA3 2/10/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (rev LA3 2/14/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (rev LA4 3/11/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + Trog (rev LA5 3/29/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + Trojan (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Trojan (Romstar) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Trojan (US set 1) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Trojan (US set 2) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tron (5/12) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Tron (6/15) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Tron (6/17) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Tron (6/25) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Tron (8/9) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Tron (Germany) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Trophy Hunting - Bear & Moose V1.00 [Hangs are normal, just wait it out.] + 2002 + Sammy USA Corporation + + + + + + + + + + Tropical Angel + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + Truxton / Tatsujin + 1988 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + Truxton II + 1992 + Toaplan + + + + + + + Tube Panic + 1984 + Nichibutsu / Fujitek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tube Panic (bootleg) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tube-It [Bootleg] + 1993 + bootleg + + + + + + + Tumble Pop (bootleg set 1) [Bootleg] + 1991 + Data East Corporation + + + + + + + + + + Tumble Pop (bootleg set 2) [Bootleg] + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Tumble Pop (Japan) + 1991 + Data East Corporation + + + + + + + + + + Tumble Pop (World) + 1991 + Data East Corporation + + + + + + + + + + Turbo (encrypted, program 1262-1264) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted, program 1363-1365 rev A) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted, program 1363-1365 rev B) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted, program 1363-1365 rev C) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted, program 1363-1365) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (program 1513-1515) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Force (US) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + Turbo Force (World, set 1) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + Turbo Force (World, set 2) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + Turbo Out Run (cockpit, FD1094 317-0107 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (cockpit, FD1094 317-0107) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (deluxe cockpit, FD1094 317-0109) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Japan, deluxe cockpit, FD1094 317-0101 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Japan, deluxe cockpit, FD1094 317-0101) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Japan, Out Run upgrade, FD1094 317-0117 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Japan, Out Run upgrade, FD1094 317-0117) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Out Run upgrade, FD1094 317-0118 decrypted) [Bootleg] + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Out Run (Out Run upgrade, FD1094 317-0118) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turkey Hunting USA V1.00 + 2001 + Sammy USA Corporation + + + + + + + + + + Turpin + 1981 + Konami (Sega license) + + + + + + + + + + + + + Turpin (bootleg on Scramble hardware) [Bootleg, No Sound] + 1981 + bootleg + + + + + + + + + + + + + Turtle Ship (Japan) + 1988 + Philko (Pacific Games license) + + + + + + + + + + + + + + + + + + + Turtle Ship (Korea) + 1988 + Philko + + + + + + + + + + + + + + + + + + + Turtle Ship (Korea, 88/9) + 1988 + Philko + + + + + + + + + + + + + + + + + + + Turtle Ship (Korea, older) + 1988 + Philko + + + + + + + + + + + + + + + + + + + Turtle Ship (North America) + 1988 + Philko (Sharp Image license) + + + + + + + + + + + + + + + + + + + Turtles + 1981 + Konami (Stern license) + + + + + + + + + + + + + Tutankham + 1982 + Konami + + + + + + + + + + + + + + + + + + + + Tutankham (Stern Electronics) + 1982 + Konami (Stern Electronics license) + + + + + + + + + + + + + + + + + + + + Twin Action + 1995 + Afega + + + + + + + + + + + + Twin Adventure (Korea) + 1995 + Barko Corp + + + + + + + + + + + Twin Adventure (World) + 1995 + Barko Corp + + + + + + + + + + + Twin Brats (set 1) + 1995 + Elettronica Video-Games S.R.L. + + + + + + + + + + + + + + + Twin Brats (set 2) + 1995 + Elettronica Video-Games S.R.L. + + + + + + + + + + + + + + + Twin Brats (set 3) + 1995 + Elettronica Video-Games S.R.L. + + + + + + + + + + + + + + + Twin Cobra (US) + 1987 + Toaplan / Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twin Cobra (World) + 1987 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twin Cobra II (Ver 2.1A 1995/11/30) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + Twin Cobra II (Ver 2.1O 1995/11/30) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + Twin Eagle - Revenge Joe's Brother + 1988 + Seta (Taito license) + + + + + + + + + + + + + + + Twin Eagle II - The Rescue Mission + 1994 + Seta + + + + + + + + + + + + + + + + Twin Falcons + 1989 + Philko (Poara Enterprises license) + + + + + + + + + + + + + + + + + + Twin Hawk (US) + 1989 + Taito America Corporation + + + + + + + + + + Twin Hawk (World) + 1989 + Taito Corporation Japan + + + + + + + + + + Twin Qix (Ver 1.0A 1995/01/17) (Prototype) [Prototype] + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + TwinBee (Bubble System) + 1985 + Konami + + + + + + + + + TwinBee (ROM version) + 1985 + Konami + + + + + + + + + + Twinkle (set 1) + 1997 + SemiCom + + + + + + + + + + Twinkle (set 2) + 1997 + SemiCom + + + + + + + + + + Twinkle Star Sprites + 1996 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twins (bootleg of Mega Twins) [Bootleg] + 1993 + David Inc. (bootleg) + + + + + + + + + + + Two Crude (US FT revision 1) + 1990 + Data East USA + + + + + + + + + + + + + + + + + + + + + Two Crude (US FT version) + 1990 + Data East USA + + + + + + + + + + + + + + + + + + + + + Two Tigers (dedicated) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + Tylz (prototype) + 1982 + Mylstar + + + + + + + + + + + + + + Typhoon + 1987 + Konami + + + + + + + + + + + + + + + + + U.N. Defense Force: Earth Joker (Japan, prototype?) + 1993 + Visco + + + + + + + + + + + + + U.N. Defense Force: Earth Joker (US / Japan, set 1) + 1993 + Visco + + + + + + + + + + + + + U.N. Defense Force: Earth Joker (US / Japan, set 2) + 1993 + Visco + + + + + + + + + + + + + U.N. Squadron (US) + 1989 + Daipro / Capcom + + + + + + + + + + + + + + + + + + + + + U.S. Championship V'ball (bootleg of Japan set) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + U.S. Championship V'ball (bootleg of US set) [Bootleg] + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + U.S. Championship V'ball (Japan) + 1988 + Technos Japan + + + + + + + + + + + + U.S. Championship V'ball (US) + 1988 + Technos Japan + + + + + + + + + + + + U.S. Classic + 1989 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Navy (901012 Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ufo Robo Dangar (12/1/1986) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Ufo Robo Dangar (4/07/1987) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Ufo Robo Dangar (9/26/1986) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Ufo Robo Dangar (9/26/1986, Japan) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + Ufo Robo Dangar (bootleg) [Bootleg] + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Ufo Senshi Yohko Chan (MC-8123, 317-0064) + 1988 + Sega + + + + + + + + + + + + + + + + + + + Ultimate Ecology (931203 Japan) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 (rev 1.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 (rev 1.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 (rev 1.2) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 Cup Edition (Hack, Ver. 2021-04-30) [Hack] + 2021 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 Plus (Hack, Beta 1) [Hack] + 2019 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 Tournament Edition (hack, V2.0.042/August 2018) [Hack] + 2018 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Tennis + 1993 + Art & Magic + + + + + + + Ultimate Tennis (v 1.4, Japan) + 1993 + Art & Magic (Banpresto license) + + + + + + + Ultra Balloon + 1996 + SunA + + + + + + + + + + + Ultra Toukon Densetsu (Japan) + 1993 + Banpresto / Tsuburaya Productions + + + + + + + + + + + + + + Ultra X Weapons / Ultra Keibitai + 1995 + Banpresto / Tsuburaya Productions + + + + + + + + + + + + + + + Ultra X Weapons / Ultra Keibitai (GAMEST review build) + 1995 + Banpresto / Tsuburaya Productions + + + + + + + + + + + + + + + Ultraman (Japan) + 1991 + Banpresto / Bandai + + + + + + + + + + + + + + + + + + + + + + Ultraman Club - Tatakae! Ultraman Kyoudai!! + 1992 + Banpresto / Tsuburaya Productions + + + + + + + + Uncle Poo + 1983 + Diatec + + + + + + + + + + + + + Under Fire (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Under Fire (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Undercover Cops (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + Undercover Cops (US) + 1992 + Irem + + + + + + + + + + + + + + + + + + Undercover Cops (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + Undercover Cops - Alpha Renewal Version (US) + 1992 + Irem America + + + + + + + + + + + + + + + + + + Undercover Cops - Alpha Renewal Version (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + UniWar S + 1980 + Irem + + + + + + + + + + + + + + + + UniWar S (bootleg) + 1980 + bootleg (Karateco) + + + + + + + + + + + + + + + + unknown Pac-Man gambling game + 199? + unknown + + + + + + + + Up'n Down (315-5030) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Up'n Down (not encrypted) + 1983 + Sega + + + + + + + + + + + + + + + + + + + US AAF Mustang (25th May. 1990 / Seoul Trading) + 1990 + UPL (Seoul Trading license) + + + + + + + + + + + + + + + US AAF Mustang (25th May. 1990) + 1990 + UPL + + + + + + + + + + + + + + + US AAF Mustang (bootleg) + 1990 + bootleg + + + + + + + + + + + US AAF Mustang (TAB Austria bootleg) + 1990 + bootleg (TAB Austria) + + + + + + + + + + + + + + + + + + + + V-Five (Japan) + 1993 + Toaplan + + + + + + V-Liner (v0.53) + 2001 + Dyna / BreezaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + V-Liner (v0.54) + 2001 + Dyna / BreezaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + V-Liner (v0.6e) + 2001 + Dyna / BreezaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + V-Liner (v0.7a) + 2001 + Dyna / BreezaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + V-Liner (v0.7e) + 2001 + Dyna / BreezaSoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Valkyrie no Densetsu (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Valtric + 1986 + NMK (Jaleco license) + + + + + + + + + + + + + + + Vamf x1/2 (Europe, version 1.0.0903) + 1999 + Danbi / F2 System + + + + + + + Vamf x1/2 (Europe, version 1.1.0908) + 1999 + Danbi / F2 System + + + + + + + + + Vamp x1/2 (Korea, version 1.1.0908) + 1999 + Danbi / F2 System + + + + + + + + + Vampire - the night warriors (940630 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire - the night warriors (940705 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire - the night warriors (940705 Japan, alt) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter - darkstalkers' revenge (950302 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter - darkstalkers' revenge (950307 Japan stop version) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter - darkstalkers' revenge (950307 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter - darkstalkers' revenge (950316 Japan) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter 2 - darkstalkers revenge (970913 Japan Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter 2 - darkstalkers revenge (970913 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter 2 - darkstalkers revenge (970929 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Asia) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Brazil) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Euro Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Euro) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Hispanic) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior - the lord of vampire (970519 USA) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior 2 - the lord of vampire (970913 Japan Phoenix Edition) [Bootleg] + 1997 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior 2 - the lord of vampire (970913 Japan) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Van-Van Car + 1983 + Sanritsu + + + + + + + + + + + + Van-Van Car (Karateco) + 1983 + Karateco + + + + + + + + + + + + Van-Van Car (set 3) + 1983 + Karateco + + + + + + + + + + + + Vandyke (bootleg with PIC16c57) [No sound] + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + Vandyke (Jaleco, Set 1) + 1990 + UPL (Jaleco license) + + + + + + + + + + + + + + + + + Vandyke (Jaleco, Set 2) + 1990 + UPL (Jaleco license) + + + + + + + + + + + + + + + + + Vandyke (Japan) + 1990 + UPL + + + + + + + + + + + + + + + + + Vanguard (Centuri) + 1981 + SNK (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard (Germany) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard (Japan) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard (SNK) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard II + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + Vapor Trail - Hyper Offence Formation (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + Vapor Trail - Hyper Offence Formation (World revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Vapor Trail - Hyper Offence Formation (World revision 3) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + Varia Metal + 1995 + Excellent System + + + + + + + + + + + Varia Metal (New Ways Trading Co.) + 1995 + Excellent System (New Ways Trading Co. license) + + + + + + + + + + + Varth - operation thunderstorm (920612 etc) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Varth - operation thunderstorm (920612 USA) + 1992 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + Varth - operation thunderstorm (920714 etc) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Varth - operation thunderstorm (920714 Japan Resale Ver.) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + Varth - operation thunderstorm (920714 Japan) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Varth - operation thunderstorm (bootleg, 920612 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Vasara + 2000 + Visco + + + + + + + + + + + + Vasara 2 (set 1) + 2001 + Visco + + + + + + + + + + + + Vasara 2 (set 2) + 2001 + Visco + + + + + + + + + + + + Vastar (set 1) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + + + + + Vastar (set 2) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + + + + + Vastar (set 3) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + Vastar (set 4) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + + + + + Vautour (bootleg of Phoenix) (8085A CPU) + 1980 + bootleg (Jeutel) + + + + + + + + + + + + + + + + + Vautour (bootleg of Phoenix) (Z80 CPU) + 1980 + bootleg + + + + + + + + + + + + + + + + + Vautour (bootleg of Phoenix) (Z80 CPU, single PROM) + 1980 + bootleg (Jeutel) + + + + + + + + + + + + + + + + Vendetta (Asia, 2 Players ver. D) + 1991 + Konami + + + + + + + + + + + + + Vendetta (Asia, 2 Players ver. U) + 1991 + Konami + + + + + + + + + + + + + Vendetta (Asia, 4 Players ver. Z) + 1991 + Konami + + + + + + + + + + + + + Vendetta (US, 4 Players ver. R) + 1991 + Konami + + + + + + + + + + + + + Vendetta (World, 2 Players ver. ?) + 1991 + Konami + + + + + + + + + + + + + Vendetta (World, 2 Players ver. EB-A?) + 1991 + Konami + + + + + + + + + + + + + Vendetta (World, 2 Players ver. W) + 1991 + Konami + + + + + + + + + + + + + Vendetta (World, 4 Players ver. T) + 1991 + Konami + + + + + + + + + + + + + Vendetta (World, 4 Players, ver. ?) + 1991 + Konami + + + + + + + + + + + + + Venus [Bootleg] + 1983 + bootleg + + + + + + + + + + + + + + + + + + Verbena (bootleg of Carnival) + 1980 + bootleg (Cocomatic) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VF (bootleg of Hang-On) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Victory (Comsoft) + 1982 + Comsoft + + + + + + + + + + Victory (Comsoft) (bootleg) + 1982 + bootleg + + + + + + + + + + + Victory Road + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Video Hustler + 1981 + Konami + + + + + + + + + + + Video Hustler (bootleg) [Bootleg] + 1981 + bootleg + + + + + + + + + + + Video Pool (bootleg on Moon Cresta hardware) [Bootleg] + 1980 + bootleg + + + + + + + + + + Video Vince and the Game Factory (prototype) + 1984 + Mylstar + + + + + + + + + + + + + + + + + Viewpoint + 1992 + Sammy / Aicom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Viewpoint (prototype) [Prototype] + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vigilante (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Vigilante (Japan, Rev D) + 1988 + Irem + + + + + + + + + + + + + + + + + + + Vigilante (US) + 1988 + Irem (Data East USA License) + + + + + + + + + + + + + + + + + + + Vigilante (US, Rev B) + 1988 + Irem (Data East License) + + + + + + + + + + + + + + + + + + + Vigilante (US, Rev G) + 1988 + Irem (Data East USA License) + + + + + + + + + + + + + + + + + + + + Vigilante (World, Rev A) + 1988 + Irem + + + + + + + + + + + + + + + + + + + Vigilante (World, Rev C) + 1988 + Irem + + + + + + + + + + + + + + + + + + + Vigilante (World, Rev E) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + Vimana (Japan) + 1991 + Toaplan + + + + + + + + + + + + + + Vimana (World, set 1) + 1991 + Toaplan + + + + + + + + + + + + + + Vimana (World, set 2) + 1991 + Toaplan + + + + + + + + + + + + + + Vindicators (Europe, rev 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (Europe, rev 4) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (Europe, rev 5) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (German, rev 1) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (rev 1) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (rev 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (rev 4) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (rev 5) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators Part II (rev 1) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vindicators Part II (rev 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vindicators Part II (rev 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Violence Fight (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Violence Fight (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Violence Fight (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Violent Storm (ver AAB) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver AAC) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver EAB) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver EAC) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver JAC) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver UAB) + 1993 + Konami + + + + + + + + + + + + + + + Violent Storm (ver UAC) + 1993 + Konami + + + + + + + + + + + + + + + Viper Phase 1 (Germany) + 1995 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (Hong Kong) + 1995 + Seibu Kaihatsu (Metrotainment license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (Japan) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Germany) + 1995 + Seibu Kaihatsu (Tuning license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Holland) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Japan) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Korea) + 1995 + Seibu Kaihatsu (Dream Island license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Portugal) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, Switzerland) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, US set 1) + 1995 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, US set 2) + 1995 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + Viper Phase 1 (New Version, World) + 1995 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + Volfied (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Volfied (Japan, revision 1) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Volfied (US, revision 1) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + Volfied (World, revision 1) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + Voltage Fighter - Gowcaizer / Choujin Gakuen Gowcaizer + 1995 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vs 10-Yard Fight (Japan) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Vs 10-Yard Fight (US, Taito license) + 1984 + Irem (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + Vs 10-Yard Fight (World, 11/05/84) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + VS Block Breaker (Asia) + 1997 + Kaneko / Mediaworks + + + + + + + + + + + + + + VS Block Breaker (Europe) + 1997 + Kaneko / Mediaworks + + + + + + + + + + + + + + VS Gong Fight + 1984 + Kaneko + + + + + + + + + + + + + + + + + + VS Mahjong Otome Ryouran + 1998 + Electro Design + + + + + + + + + + + + + + + + Vs. Janshi Brandnew Stars (Ver 1.1, MegaSystem32 Version) + 1997 + Jaleco + + + + + + + + + + + + + + + + + + + + + Vs. Janshi Brandnew Stars [Not currently emulated] + 1997 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Vulcan Venture (New) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Vulcan Venture (Old) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Vulcan Venture (Oldest) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Vulgus (Japan?) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vulgus (set 1) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vulgus (set 2) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wacko + 1982 + Bally Midway + + + + + + + + + + + + + + + + + Wai Wai Jockey Gate-In! + 1984 + Jaleco / Casio + + + + + + + + + + + + + + Wakakusamonogatari Mahjong Yonshimai (Japan) + 1996 + Maboroshi Ware + + + + + + + + + + + + + + Waku Waku 7 + 1996 + Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Waku Waku 7 (Boss Hack) [Hack] + 1996 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Waku Waku Ultraman Racing [Emulation not complete] + 1996 + Sega + + + + + + + + + + + + + + + + + + Wall Crash (set 1) + 1984 + Midcoin + + + + + + + + + Wall Crash (set 2) + 1984 + Midcoin + + + + + + + + + Wally wo Sagase! (rev A, Japan, FD1094 317-0197A decrypted) [Bootleg] + 1992 + Sega + + + + + + + + + + + + + + + + + + Wally wo Sagase! (rev A, Japan, FD1094 317-0197A) + 1992 + Sega + + + + + + + + + + + + + + + + + + + Wally wo Sagase! (rev B, Japan, FD1094 317-0197B decrypted) [Bootleg] + 1992 + Sega + + + + + + + + + + + + + + + + + + Wally wo Sagase! (rev B, Japan, FD1094 317-0197B) + 1992 + Sega + + + + + + + + + + + + + + + + + + + Wanted + 1984 + Sigma Enterprises Inc. + + + + + + + + + + + + War of Aero - Project MEIOU + 1993 + Yang Cheng + + + + + + + + + + + War of the Bugs or Monsterous Manouvers in a Mushroom Maze + 1981 + Armenia + + + + + + + + + + + War of the Bugs or Monsterous Manouvers in a Mushroom Maze (US) + 1981 + Armenia + + + + + + + + + + + War-Zard / Red Earth (Japan 961023) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + War-Zard / Red Earth (Japan 961121) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Wardner (World) + 1987 + Toaplan / Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wardner (World, bootleg) [Bootleg] + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wardner no Mori (Japan) + 1987 + Toaplan / Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warp & Warp + 1981 + Namco + + + + + + + Warp Warp (Rock-Ola set 1) + 1981 + Namco (Rock-Ola license) + + + + + + + + Warp Warp (Rock-Ola set 2) + 1981 + Namco (Rock-Ola license) + + + + + + + + Warrior Blade - Rastan Saga Episode III (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (921002 etc) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (921031 USA) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (921031 World) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (bootleg with PIC16C57, 921002 etc) [Bootleg, no sound] + 1992 + bootleg + + + + + + + + + + + + + + + + + Warriors of Fate (bootleg, 921002 etc) [Bootleg] + 1992 + bootleg + + + + + + + + + + + + + + + + + + Water Balls + 1996 + ABM + + + + + + + + + + Water Match (315-5064) + 1984 + Sega + + + + + + + + + + + + + + + + + + + Water Ski + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + WEC Le Mans 24 (v1.26) + 1986 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WEC Le Mans 24 (v2.00) + 1986 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WEC Le Mans 24 (v2.00, hack) + 1988 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WEC Le Mans 24 (v2.01) + 1986 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Welltris - Alexey Pajitnov's (Japan, 2 players) + 1991 + Video System Co. + + + + + + + + + + + + + + Welltris - Alexey Pajitnov's (World?, 2 players) + 1991 + Video System Co. + + + + + + + + + + + + + + Western Express (bootleg set 1) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Western Express (bootleg set 2) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Western Express (bootleg set 3) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + Western Express (Japan, rev 4) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Wheels Runner + 19?? + International Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Whizz + 1989 + Philko + + + + + + + + + + + + + + + + + + Wiggie Waggie + 1994 + Promat + + + + + + + + + + + Wild Fang + 1989 + Tecmo + + + + + + + + + + + + + + + + Wild Fang / Tecmo Knight + 1989 + Tecmo + + + + + + + + + + + + + + + + Wild Pilot + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (ver AAB) + 1992 + Konami + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (ver EAB) + 1992 + Konami + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (ver UAB) + 1992 + Konami + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (ver UAC) + 1992 + Konami + + + + + + + + + + + + + + + + Wild Western (set 1) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + Wild Western (set 2) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + Willow (Japan, Japanese) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (USA Old Ver.) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (USA) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (World) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wily Tower + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + Windjammers / Flying Power Disc + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wing Force (Japan, prototype) + 1993 + A.I (Atlus license) + + + + + + + + + + + + + + + + + + + Wing Shooting Championship V1.00 + 2001 + Sammy USA Corporation + + + + + + + + + + Wing Shooting Championship V1.01 + 2001 + Sammy USA Corporation + + + + + + + + + + Wing Shooting Championship V2.00 + 2001 + Sammy USA Corporation + + + + + + + + + + Wiping + 1982 + Nichibutsu + + + + + + + + + + + + + + + + Wit's (Japan) + 1989 + Athena (Visco license) + + + + + + + + + + + Wivern Wings + 2001 + SemiCom + + + + + + + + + + + + + + + + Wiz + 1985 + Seibu Kaihatsu Inc. + + + + + + + + + + + + + + + + Wiz (Taito, set 1) + 1985 + [Seibu] (Taito license) + + + + + + + + + + + + + + + + Wiz (Taito, set 2) + 1985 + [Seibu] (Taito license) + + + + + + + + + + + + + + + + Wiz Warz (prototype) [Prototype] + 1984 + Mylstar + + + + + + + + + + + + + + + + Wizard Fire (Over Sea v2.1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Wizard Fire (US v1.1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Wizz Quiz (Konami version) + 1985 + Zilec-Zenitone (Konami license) + + + + + + + + + + + + + + + + + + + + + Wizz Quiz (version 4) + 1985 + Zilec-Zenitone + + + + + + + + + + + + + + + + + + + + + Wolf Fang -Kuhga 2001- (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + Wonder 3 (910520 Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (not encrypted) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + Wonder Boy (set 1, 315-5135) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + Wonder Boy (set 1, 315-5177) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + Wonder Boy (set 2, 315-5178) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 2, not encrypted) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 3, 315-5135) + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + Wonder Boy (set 4, 315-5162) + 1986 + Sega (Escape License) + + + + + + + + + + + + Wonder Boy (set 5, bootleg) [Bootleg] + 1986 + bootleg + + + + + + + + + + + + + + + + + + Wonder Boy Deluxe + 1986 + Sega (Escape License) + + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 1, Japan, System 16A, FD1094 317-0084 decrypted) [Bootleg] + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 1, Japan, System 16A, FD1094 317-0084) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 2, Japan, System 16B, FD1094 317-0085 decrypted) [Bootleg] + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 2, Japan, System 16B, FD1094 317-0085) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 3, World, System 16B, FD1094 317-0089 decrypted) [Bootleg] + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 3, World, System 16B, FD1094 317-0089) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 4, Japan, System 16B, FD1094 317-0087 decrypted) [Bootleg] + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 4, Japan, System 16B, FD1094 317-0087) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 5, Japan, System 16A, FD1089A 317-0086 decrypted) [Bootleg] + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 5, Japan, System 16A, FD1089A 317-0086) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 6, World, System 16B, 8751 317-0098) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (English bootleg set 1) + 1987 + bootleg + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (English, Virtual Console) + 2009 + Sega + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan New Ver., MC-8123, 317-0043) + 1987 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan not encrypted) + 1987 + bootleg + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan Old Ver., MC-8123, 317-0043) + 1987 + Sega / Westone + + + + + + + + + + + + + + + + + + + Wonder League '96 (Korea) + 1995 + SemiCom + + + + + + + + + + + + + + Wonder League Star - Sok-Magicball Fighting (Korea) + 1995 + Mijin + + + + + + + + + + + + + + Wonder Momo + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Planet (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Stick (set 1) + ???? + Yun Sung + + + + + + + + + + + + + + + + + + + + Wonder Stick (set 2, censored) + ???? + Yun Sung + + + + + + + + + + + + + + + + + + + + Woodpecker (set 1) + 1981 + Amenip (Palcom Queen River) + + + + + + + + + + + + + + + + Woodpecker (set 2) + 1981 + Amenip (Palcom Queen River) + + + + + + + + + + + + + + World Adventure + 1999 + Logic / F2 System + + + + + + + + + + World Class Bowling (v1.0) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.1) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.2) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.3) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.3J, Japan) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.4) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.5) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + World Class Bowling (v1.6) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.61) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.65) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.66) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + World Class Bowling Deluxe (v2.00) + 1999 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + World Class Bowling Tournament (v1.30) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + World Class Bowling Tournament (v1.40) + 1997 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + World Court (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + World Cup '90 (bootleg, set 1) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Cup '90 (bootleg, set 2) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Cup '90 (bootleg, set 3) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Cup '90 (Euro set 1) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + World Cup '90 (Euro set 2) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + World Cup '90 (Euro set 3) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + World Cup '90 (european hack, different title) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Cup '90 (trackball) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + World Cup '90 (World, set 1) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + World Cup Volley '95 (Asia v1.0) + 1995 + Data East Corporation + + + + + + + + + + + World Cup Volley '95 (Japan v1.0) + 1995 + Data East Corporation + + + + + + + + + + + World Cup Volley '95 Extra Version (Asia v2.0B) + 1995 + Data East Corporation + + + + + + + + + + + World Heroes (ALH-005) + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes (ALM-005) + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes (set 3) + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 (ALH-006) + 1993 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 (ALM-006)(ALH-006) + 1993 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 Jet (ADM-007) + 1994 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 Jet (ADM-007)(ADH-007) + 1994 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes Perfect + 1995 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World PK Soccer V2 (ver 1.1) + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + World Rally (US, 930217) + 1993 + Gaelco (Atari license) + + + + + + + + + + + + + + World Rally (Version 1.0, Checksum 0E56) + 1993 + Gaelco + + + + + + + + + + + + + + + + + World Rally (Version 1.0, Checksum 3873) + 1993 + Gaelco + + + + + + + + + + + + + + + + + World Rally (Version 1.0, Checksum 8AA2) + 1993 + Gaelco + + + + + + + + + + + + + + World Rally 2: Twin Racing (EPROM version) + 1995 + Gaelco + + + + + + + + + + + + + + + + + + + + World Rally 2: Twin Racing (mask ROM version) + 1995 + Gaelco + + + + + + + + + World Stadium '89 (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + World Stadium '90 (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + World Stadium (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + World Wars (World?) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WOW New Fantasia + 2002 + Comad + + + + + + + + + + + Wrestle War (set 1, Japan, FD1094 317-0090 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Wrestle War (set 1, Japan, FD1094 317-0090) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Wrestle War (set 2, World, FD1094 317-0102 decrypted) [Bootleg] + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Wrestle War (set 2, World, FD1094 317-0102) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Wrestle War (set 3, World, 8751 317-0103) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + WW2 Demo - Arcade Development Project [Homebrew] + 2012 + Charles DOTY/RasterSoft (USA) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WWF Superstars (bootleg) [Bootleg] + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WWF Superstars (Europe) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + WWF Superstars (Japan) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + WWF Superstars (US revision 4) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + WWF Superstars (US revision 6) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + WWF Superstars (US revision 7) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + WWF WrestleFest (Japan) + 1991 + Technos Japan (Tecmo License) + + + + + + + + + + + + + + + + + + WWF WrestleFest (Korea) + 1991 + Technos Japan (Tecmo License) + + + + + + + + + + + + + + + + + + WWF WrestleFest (US bootleg) [Bootleg] + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + WWF WrestleFest (US) + 1991 + Technos Japan + + + + + + + + + + + + + + + + + + WWF WrestleFest (US, rev 2) + 1991 + Technos Japan + + + + + + + + + + + + + + + + + + WWF WrestleFest (World) + 1991 + Technos Japan (Tecmo license) + + + + + + + + + + + + + + + + + + WWF: Wrestlemania (proto 2.01 06/07/95) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + WWF: Wrestlemania (rev 1.1 07/11/95) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + WWF: Wrestlemania (rev 1.20 08/02/95) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + WWF: Wrestlemania (rev 1.30 08/10/95) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Wyvern F-0 + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + Wyvern F-0 (Rev 1) + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + Wyvern Wings (set 1) + 2001 + SemiCom (Game Vision license) + + + + + + + + + + + + + + + + Wyvern Wings (set 2) + 2001 + SemiCom (Game Vision license) + + + + + + + + + + + + + + + + X Multiply (Japan, M72 hardware) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + X Multiply (World, M81 hardware) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Day 2 (Japan) + 1995 + Namco + + + + + + + + + + X-Men (2 Players ver AAA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (2 Players ver EAA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (2 Players ver JAA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (2 Players ver UAB) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver ADA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver AEA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver EBA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver JBA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver JEA) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver UBB) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (4 Players ver UEB) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (6 Players ver ECB) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men (6 Players ver UCB) + 1992 + Konami + + + + + + + + + + + + + + + + X-Men - children of the atom (941208 Japan, rent version) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (941217 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (941217 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (941219 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (941219 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (941222 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 Asia) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 Euro Phoenix Edition) [Bootleg] + 1995 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 Japan) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950105 USA) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950331 Brazil) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950331 Euro) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men - children of the atom (950331 Hispanic) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960909 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960910 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960910 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960910 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960910 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (960919 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 Euro) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 Hispanic) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 USA Phoenix Edition) [Bootleg] + 1996 + bootleg + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961004 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961023 Asia) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961023 Brazil) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961023 Japan) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X-Men vs Street Fighter (961023 USA) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + X2222 (5-level prototype) [Prototype, Prototype - No Sound, Incomplete game] + 2000 + Oriental Soft / Promat + + + + + + + + + + + + + + + + + + + + X2222 (final debug?) [Prototype, Prototype - No Sound, Incomplete game] + 2000 + Oriental Soft / Promat + + + + + + + + + + + + + + + + + + + + Xain'd Sleena (Japan) + 1986 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xain'd Sleena (World) + 1986 + Technos Japan (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XESS - The New Revolution (SemiCom 3-in-1) + 1997 + SemiCom + + + + + + + + + + + + + Xevious (Namco) + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xexex (ver AAA) + 1991 + Konami + + + + + + + + + + + + + + + + + + Xexex (ver EAA) + 1991 + Konami + + + + + + + + + + + + + + + + + + Xexex (ver JAA) + 1991 + Konami + + + + + + + + + + + + + + + + + + Xi You Shi E Zhuan Super Plus (Qun Mo Luan Wu New 208 Revision) [Hack, Incomplete Dump] + 2020-07-05 + Hack + + + + + + + + + + + + + + + + + + + Xor World (prototype) + 1990 + Gaelco + + + + + + + + + + XX Mission + 1986 + UPL + + + + + + + + + + + + + + Xybots (French, rev 3) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + Xybots (German, rev 3) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + Xybots (rev 0) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + Xybots (rev 1) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + Xybots (rev 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + Xyonix + 1989 + Philko + + + + + + + + Yakyuu Kakutou League-Man (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + Yamato (US) + 1983 + Sega + + + + + + + + + + + + + + + + + + + Yamato (World?) + 1983 + Sega + + + + + + + + + + + + + + + + + + Yankee DO! + 1982 + hack + + + + + + + + + + + + + + + + + + Yellow Cab (bootleg) [Bootleg] + 1984 + bootleg + + + + + + + + + + + + + + + + + Yellow Cab (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + Yes/No Sinri Tokimeki Chart + 1992 + Taito Corporation + + + + + + + + + Yie Ar Kung-Fu (GX361 conversion) + 1985 + Konami + + + + + + + + + + + + + + + + + Yie Ar Kung-Fu (program code G) + 1985 + Konami + + + + + + + + + + + + + Yie Ar Kung-Fu (program code I) + 1985 + Konami + + + + + + + + + + + + + Yokai Douchuuki (Japan, new version (YD2, Rev B)) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Yokai Douchuuki (Japan, old version (YD1)) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Youjyuden (Japan) + 1986 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Youma Ninpou Chou (Japan) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Youma Ninpou Chou (Japan, alt) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Yukiwo (World, prototype) [Prototype, Imperfect graphics] + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Yuuyu no Quiz de GO!GO! (Japan) + 1990 + Taito Corporation + + + + + + + + + + + Zarzon + 1981 + SNK (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zaviga + 1984 + Data East Corporation + + + + + + + + + + + + + + Zaviga (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + Zaxxon (Japan) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zaxxon (set 1, rev D) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zaxxon (set 2, unknown rev) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zaxxon (set 3, unknown rev) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zed Blade / Operation Ragnarok + 1994 + NMK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zektor (revision B) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zero (set 1, Defender bootleg) [Bootleg] + 1980 + bootleg (Jeutel) + + + + + + + + + + + Zero (set 2, Defender bootleg) [Bootleg] + 1980 + bootleg (Amtec) + + + + + + + + + + + Zero Point (Japan) + 1998 + Unico + + + + + + + + + + + + + + Zero Point (set 1) + 1998 + Unico + + + + + + + + + + + + + + Zero Point (set 2) + 1998 + Unico + + + + + + + + + + + + + + Zero Point 2 + 1999 + Unico + + + + + + + + + + + + + + + Zero Team (set 2, Japan? (earlier?)) [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team (set 3, Japan? (later batteryless)) [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team (set 4, Taiwan, Liang Hwa license) [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team (set 5, Korea, Dream Soft license) [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team 2000 + 2000 + Seibu Kaihatsu + + + + + + + + + + + + + Zero Team Selection [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team Suicide Revival Kit [No game code! Black screen normal!] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Team USA (set 1, US, Fabtek license) [Unemulated protection] + 1993 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + Zero Time (Datamat) + 1979 + bootleg (Datamat) + + + + + + + Zero Time (Marti Colls) + 1979 + bootleg (Marti Colls) + + + + + + + + + + + Zero Time (Petaco S.A.) + 1979 + bootleg? (Petaco S.A.) + + + + + + + + + + + Zero Time (Spanish bootleg) + 1979 + bootleg + + + + + + + + + + + Zero Wing (1P set) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Zero Wing (2P set) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + Zero Wing (2P set, Williams license) + 1989 + Toaplan (Williams license) + + + + + + + + + + + + + + + + + + Zero Zone + 1993 + Comad + + + + + + + + + Zeroize (DECO Cassette) (US) + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zhong Guo Long II (V100, China) + 1997 + IGS + + + + + + + + + + + + + Zhong Guo Long II (V101, China) + 1997 + IGS + + + + + + + + + + + + + Zig Zag (Galaxian hardware, set 1) + 1982 + LAX + + + + + + + + + + Zig Zag (Galaxian hardware, set 2) + 1982 + LAX + + + + + + + + + + Zing Zing Zip + 1992 + Allumer + Tecmo + + + + + + + + + + + Zintrick / Oshidashi Zentrix (hack / bootleg) [Bootleg] + 1996 + hack / bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zintrick / Oshidashi Zentrix (Neo CD conversion) [Hack] + 1996 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zip & Zap [Imperfect GFXs, No Sound] + 1995 + Barko Corp + + + + + + + + + + + + + + + Zoar + 1982 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + Zodiack + 1983 + Orca (Esco Trading Co., Inc. license) + + + + + + + + + + + + Zombie Raid (9/28/95, Japan, prototype PCB) + 1995 + Sammy Industries Co.,Ltd. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zombie Raid (9/28/95, US) + 1995 + American Sammy + + + + + + + + + + + + + + + Zombie Raid (9/28/95, US, prototype PCB) + 1995 + American Sammy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 3) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Zoom 909 + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zupapa! + 2001 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zzyzzyxx (set 1) + 1982 + Cinematronics / Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + Zzyzzyxx (set 2) + 1982 + Cinematronics / Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + Bubble System BIOS + 1985 + Konami + + + + + + + + C-Chip Internal ROM [Internal ROM only] + 1989 + Taito Corporation Japan + + + + DECO Cassette System Bios [BIOS only] + 1981 + Data East + + + + + + + + + + + + + + + + + + + + + + + + + + ISG Selection Master Type 2006 System BIOS [BIOS only] + 2006 + ISG + + + + Midway SSIO Sound Board Internal pROM [Internal pROM only] + 1981 + Midway + + + + Namco C69 (M37702) (Bios) [BIOS only] + 1994 + Namco + + + + Namco C70 (M37702) (Bios) [BIOS only] + 1994 + Namco + + + + Namco C75 (M37702) (Bios) [BIOS only] + 1994 + Namco + + + + Neo Geo [BIOS only] + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NMK004 Internal ROM [internal rom] + 1990 + N M K Corporation + + + + PGM (Polygame Master) System BIOS [BIOS only] + 1997 + IGS + + + + + + + + + Super Kaneko Nova System BIOS [BIOS only] + 1996 + Kaneko + + + + + + + + YM2608 Internal ROM [Internal ROM only] + 1989 + Yamaha + + +
\ No newline at end of file diff --git a/python/fbneo_roms_utils/config.py b/python/fbneo_roms_utils/config.py new file mode 100644 index 0000000..7267b9a --- /dev/null +++ b/python/fbneo_roms_utils/config.py @@ -0,0 +1,12 @@ +# Fichero a usar en caso de no especificar ninguno por parametro +XML_FILE="FinalBurn Neo v1.0.0.02 (ClrMame Pro XML).dat" + +# Opciones globales +IGNORE_LIST = ["DECO Cassette", "Bootleg", "prototype", "Quiz", "Mahjong", "Demo"] +IGNORE_SYSTEM = ["neogeo"] + +# Directorio de entrada a usar en caso de no especificar ninguno por parametro +INPUT_FOLDER="/sustancia/roms/FB Neo v1.0.0.2/roms/arcade" + +# Directorio de salida a usar en caso de no especificar ninguno por parametro +OUTPUT_FOLDER="/home/sergio/tmp" \ No newline at end of file diff --git a/python/fbneo_roms_utils/fbneo_roms_by_manufacturer.py b/python/fbneo_roms_utils/fbneo_roms_by_manufacturer.py new file mode 100644 index 0000000..ac017a2 --- /dev/null +++ b/python/fbneo_roms_utils/fbneo_roms_by_manufacturer.py @@ -0,0 +1,310 @@ +# Script para copiar roms a partir de un xml de fbneo +# Copia las roms por desarrollador y sin clones + +# Por hacer: +# pasar por parametro si se quieren clones + +import os +import shutil +import sys +import argparse +import config +from xml.dom import minidom + +def normalize_path(path): + """Elimina los caracteres ilegales de la cadena de texto""" + # Lista de caracteres ilegales que deben ser eliminados + illegal_chars = ["<", ">", ":", '"', "/", "\\", "|", "?", "*"] + # Carácter de reemplazo + replace_with = "_" + + # Reemplaza cada carácter ilegal en la cadena de texto + for char in illegal_chars: + path = path.replace(char, replace_with) + + return path + +def parse_arguments(): + """Parsea los argumentos de la línea de comandos""" + parser = argparse.ArgumentParser( + description="Gestiona las roms de fbneo por desarrolladores a partir de un fichero .dat" + ) + + # Grupo de argumentos mutuos exclusivos + group = parser.add_mutually_exclusive_group() + group.add_argument( + "-l", + "--list", + help="Muestra la lista de desarrolladores o de juegos", + action="store_true", + ) + group.add_argument( + "-c", + "--copy", + help="Copia las roms", + action="store_true" + ) + group.add_argument( + "-f", + "--find", + help="Busca juegos que contengan la cadena de texto especificada", + ) + + # Otros argumentos + parser.add_argument( + "-s", + "--sort", + help="Ordena los resultados por carpetas de desarrollador al copiar todas las roms", + action="store_true", + ) + parser.add_argument( + "-cf", + "--create_folder", + help="Copia las roms dentro de la carpeta del desarrollador", + action="store_true", + ) + parser.add_argument( + "-m", + "--manufacturer", + help="Selecciona un desarrollador" + ) + parser.add_argument( + "-d", + "--dat", + help="Ruta del fichero .dat con información de las roms" + ) + parser.add_argument( + "-i", + "--input", + help="Ruta donde se encuentran las roms", + default="" + ) + parser.add_argument( + "-o", + "--output", + help="Ruta donde depositar las roms", + default="" + ) + + return parser.parse_args() + +def load_dat_file(dat_path): + """Carga y analiza el fichero .dat especificado""" + if not dat_path: + print("No se ha especificado un fichero .dat") + if os.path.exists(config.XML_FILE): + # Usa el fichero por defecto si no se especifica uno + print(f"Usando el fichero por defecto: {config.XML_FILE}") + dat_path = config.XML_FILE + else: + # Salir si no se encuentra el fichero por defecto + sys.exit(2) + elif not os.path.isfile(dat_path): + # Salir si el fichero especificado no existe + print(f"No se encuentra el fichero .dat especificado: {dat_path}") + sys.exit(2) + + print(f"Analizando el fichero {dat_path}") + return minidom.parse(dat_path) + +def list_manufacturers(file): + """Lista todos los desarrolladores presentes en el fichero .dat""" + print("Lista de todos los desarrolladores:") + + manufacturers = [] + games = file.getElementsByTagName("game") + + # Recoge todos los desarrolladores de los juegos + for game in games: + manufacturer = game.getElementsByTagName("manufacturer")[0] + manufacturers.append(manufacturer.firstChild.data) + + # Elimina los duplicados + manufacturers = list(dict.fromkeys(manufacturers)) + # Ordena alfabéticamente la lista de desarrolladores + manufacturers.sort() + + # Imprime cada desarrollador en una nueva línea + for manufacturer in manufacturers: + print(manufacturer) + +def list_games_by_manufacturer(file, manufacturer): + """Lista todos los juegos de un desarrollador específico""" + games = file.getElementsByTagName("game") + filtered_games = [] + + # Filtra los juegos según el fabricante especificado y excluye clones y BIOS + for game in games: + cloneof = game.getAttribute("cloneof") + isbios = game.getAttribute("isbios") + game_manufacturer = game.getElementsByTagName("manufacturer")[0] + description = game.getElementsByTagName("description")[0] + if ( + (game_manufacturer.firstChild.data == manufacturer or manufacturer == 'all') + and not cloneof + and not isbios + ): + filtered_games.append((description.firstChild.data, game.getAttribute('name'), game_manufacturer.firstChild.data)) + + # Encuentra el ancho máximo para cada columna + max_desc_length = max(len("Descripción"), max(len(row[0]) for row in filtered_games)) + max_name_length = max(len("Nombre del archivo"), max(len(row[1] + '.zip') for row in filtered_games)) + max_manufacturer_length = max(len("Desarrollador"), max(len(row[2]) for row in filtered_games)) + + # Imprime el encabezado de la tabla + print(f"Lista de todos los juegos de {manufacturer}: {len(filtered_games)}") + print(f"{'='*(max_desc_length+max_name_length+max_manufacturer_length+10)}") + print(f"| {'Descripción':<{max_desc_length}} | {'Nombre del archivo':<{max_name_length}} | {'Desarrollador':<{max_manufacturer_length}} |") + print(f"|{'-'*(max_desc_length+2)}|{'-'*(max_name_length+2)}|{'-'*(max_manufacturer_length+2)}|") + + # Imprime cada juego en la tabla + for description, name, game_manufacturer in filtered_games: + print(f"| {description:<{max_desc_length}} | {name + '.zip':<{max_name_length}} | {game_manufacturer:<{max_manufacturer_length}} |") + + # Imprime el pie de la tabla + print(f"{'='*(max_desc_length+max_name_length+max_manufacturer_length+10)}") + +def find_games(file, search_string): + """Busca juegos que contengan la cadena de texto especificada""" + games = file.getElementsByTagName("game") + filtered_games = [] + + # Filtra los juegos según la cadena de búsqueda especificada + for game in games: + description = game.getElementsByTagName("description")[0] + if search_string.casefold() in description.firstChild.data.casefold(): + game_manufacturer = game.getElementsByTagName("manufacturer")[0] + filtered_games.append((description.firstChild.data, game.getAttribute('name'), game_manufacturer.firstChild.data)) + + # Encuentra el ancho máximo para cada columna + max_desc_length = max(len("Descripción"), max(len(row[0]) for row in filtered_games)) + max_name_length = max(len("Nombre del archivo"), max(len(row[1] + '.zip') for row in filtered_games)) + max_manufacturer_length = max(len("Desarrollador"), max(len(row[2]) for row in filtered_games)) + + # Imprime el encabezado de la tabla + print(f"Juegos que contienen '{search_string}': {len(filtered_games)}") + print(f"{'='*(max_desc_length+max_name_length+max_manufacturer_length+10)}") + print(f"| {'Descripción':<{max_desc_length}} | {'Nombre del archivo':<{max_name_length}} | {'Desarrollador':<{max_manufacturer_length}} |") + print(f"|{'-'*(max_desc_length+2)}|{'-'*(max_name_length+2)}|{'-'*(max_manufacturer_length+2)}|") + + # Imprime cada juego en la tabla + for description, name, game_manufacturer in filtered_games: + print(f"| {description:<{max_desc_length}} | {name + '.zip':<{max_name_length}} | {game_manufacturer:<{max_manufacturer_length}} |") + + # Imprime el pie de la tabla + print(f"{'='*(max_desc_length+max_name_length+max_manufacturer_length+10)}") + +def copy_games(file, args, all_games=False): + """Copia los juegos según los criterios especificados""" + if args.create_folder and not all_games: + # Normaliza el nombre del desarrollador para usarlo como nombre de carpeta + normalized_manufacturer = normalize_path(args.manufacturer) + os.mkdir(os.path.join(args.output, args.manufacturer)) + + # Listas para almacenar los juegos no encontrados, ignorados y copiados + notfound = [] + ignored_games = [] + copied_games = [] + + games = file.getElementsByTagName("game") + + if all_games: + print(f"Copiando todos los juegos: {len(games)}") + else: + print(f"Copiando todos los juegos de {args.manufacturer}: {len(games)}") + + for game in games: + isignored = False + name = game.getAttribute("name") + ".zip" + cloneof = game.getAttribute("cloneof") + isbios = game.getAttribute("isbios") + romof = game.getAttribute("romof") + manufacturer = game.getElementsByTagName("manufacturer")[0] + description = game.getElementsByTagName("description")[0] + driver = game.getElementsByTagName("driver") + status = ( + game.getElementsByTagName("driver")[0].getAttribute("status") + if driver + else "" + ) + + # Verifica si el juego cumple con los criterios para ser copiado + if (all_games or manufacturer.firstChild.data == args.manufacturer) and not cloneof and not isbios and status == "good": + # Verifica si el juego debe ser ignorado + for ignore_element in config.IGNORE_LIST: + if ignore_element.casefold() in description.firstChild.data.casefold(): + ignored_games.append(description.firstChild.data) + isignored = True + + for ignore_element in config.IGNORE_SYSTEM: + if ignore_element.casefold() in romof.casefold(): + ignored_games.append(description.firstChild.data) + isignored = True + + if not isignored: + # Define la ruta de origen y destino del archivo + src = os.path.join(args.input, name) + if args.sort: + x = manufacturer.firstChild.data + x = x.replace(r"/", r"-") + dst = os.path.join(args.output, x, name) + if not os.path.isdir(os.path.join(args.output, x)): + os.mkdir(os.path.join(args.output, x)) + else: + if args.create_folder and not all_games: + dst = os.path.join(args.output, normalized_manufacturer, name) + else: + dst = os.path.join(args.output, name) + + # Copia el archivo si existe en la ruta de origen + if os.path.isfile(src): + shutil.copyfile(src, dst) + copied_games.append(description.firstChild.data) + print(description.firstChild.data) + else: + notfound.append(description.firstChild.data) + + # Imprime los resultados de los juegos no encontrados, ignorados y copiados + print(f"\nJuegos faltantes: {len(notfound)}") + for game in notfound: + print(game) + + print(f"\nJuegos ignorados: {len(ignored_games)}") + for game in ignored_games: + print(game) + + print(f"\nJuegos copiados: {len(copied_games)}") + print(f"Juegos faltantes: {len(notfound)}") + print(f"Juegos ignorados: {len(ignored_games)}") + +def main(): + """Función principal que coordina la ejecución del script""" + # Parsear los argumentos de la línea de comandos + args = parse_arguments() + # Cargar y analizar el fichero .dat + file = load_dat_file(dat_path=args.dat) + + # Manejar la opción de listar desarrolladores o juegos + if args.list: + if args.manufacturer: + list_games_by_manufacturer(file=file, manufacturer=args.manufacturer) + else: + list_manufacturers(file=file) + + # Manejar la opción de copiar roms + if args.copy: + if args.manufacturer: + copy_games(file=file, args=args, all_games=False) + else: + copy_games(file=file, args=args, all_games=True) + + # Manejar la opción de búsqueda de juegos + if args.find: + find_games(file=file, search_string=args.find) + +if __name__ == "__main__": + main() + + + + diff --git a/python/media_mover/config.py b/python/media_mover/config.py new file mode 100644 index 0000000..12827b1 --- /dev/null +++ b/python/media_mover/config.py @@ -0,0 +1,246 @@ +ROM_FOLDERS = [ + {"frontend": "batocera", "path": "/home/sergio/roms/batocera_arrm_scrapped"}, + {"frontend": "es-de", "path": "/home/sergio/roms/ES-DE/ROMs"}, +] + +CONFIG_FOLDERS = [ + {"frontend": "batocera", "path": "downloaded_images"}, + {"frontend": "es-de", "path": "/home/sergio/roms/ES-DE/CONFIG"}, +] + +SYSTEMS = [ + {"name": "3DO Interactive Multiplayer", "batocera": "3do", "es-de": "3do"}, + {"name": "Coleco Adam", "batocera": "", "es-de": "adam"}, + {"name": "Adventure Game Studio Game Engine", "batocera": "", "es-de": "ags"}, + {"name": "Commodore Amiga", "batocera": "", "es-de": "amiga"}, + {"name": "Commodore Amiga 1200", "batocera": "", "es-de": "amiga1200"}, + {"name": "Commodore Amiga 600", "batocera": "", "es-de": "amiga600"}, + {"name": "Commodore Amiga CD32", "batocera": "", "es-de": "amigacd32"}, + {"name": "Amstrad CPC", "batocera": "", "es-de": "amstradcpc"}, + {"name": "Google Android", "batocera": "", "es-de": "android"}, + {"name": "Apple II", "batocera": "", "es-de": "apple2"}, + {"name": "Apple IIGS", "batocera": "", "es-de": "apple2gs"}, + {"name": "Arcade", "batocera": "", "es-de": "arcade"}, + {"name": "Emerson Arcadia 2001", "batocera": "", "es-de": "arcadia"}, + {"name": "Acorn Archimedes", "batocera": "", "es-de": "archimedes"}, + {"name": "Arduboy Miniature Game System", "batocera": "", "es-de": "arduboy"}, + {"name": "Bally Astrocade", "batocera": "", "es-de": "astrocde"}, + {"name": "Atari 2600", "batocera": "atari2600", "es-de": "atari2600"}, + {"name": "Atari 5200", "batocera": "atari5200", "es-de": "atari5200"}, + {"name": "Atari 7800 ProSystem", "batocera": "atari7800", "es-de": "atari7800"}, + {"name": "Atari 800", "batocera": "", "es-de": "atari800"}, + {"name": "Atari Jaguar", "batocera": "", "es-de": "atarijaguar"}, + {"name": "Atari Jaguar CD", "batocera": "", "es-de": "atarijaguarcd"}, + {"name": "Atari Lynx", "batocera": "lynx", "es-de": "atarilynx"}, + {"name": "Atari ST", "batocera": "", "es-de": "atarist"}, + {"name": "Atari XE", "batocera": "", "es-de": "atarixe"}, + {"name": "Sammy Corporation Atomiswave", "batocera": "", "es-de": "atomiswave"}, + {"name": "Acorn Computers BBC Micro", "batocera": "", "es-de": "bbcmicro"}, + {"name": "Commodore 64", "batocera": "", "es-de": "c64"}, + {"name": "Philips CD-i", "batocera": "", "es-de": "cdimono1"}, + {"name": "Commodore CDTV", "batocera": "", "es-de": "cdtv"}, + {"name": "ChaiLove Game Engine", "batocera": "", "es-de": "chailove"}, + {"name": "Fairchild Channel F", "batocera": "", "es-de": "channelf"}, + {"name": "Tandy Color Computer", "batocera": "", "es-de": "coco"}, + {"name": "Coleco ColecoVision", "batocera": "", "es-de": "colecovision"}, + {"name": "Console Arcade Systems", "batocera": "", "es-de": "consolearcade"}, + {"name": "Capcom Play System", "batocera": "", "es-de": "cps"}, + {"name": "Capcom Play System I", "batocera": "", "es-de": "cps1"}, + {"name": "Capcom Play System II", "batocera": "", "es-de": "cps2"}, + {"name": "Capcom Play System III", "batocera": "", "es-de": "cps3"}, + {"name": "VTech CreatiVision", "batocera": "", "es-de": "crvision"}, + { + "name": "Daphne Arcade LaserDisc Emulator", + "batocera": "daphne", + "es-de": "daphne", + }, + {"name": "Desktop Applications", "batocera": "", "es-de": "desktop"}, + {"name": "Doom", "batocera": "", "es-de": "doom"}, + {"name": "DOS (PC)", "batocera": "", "es-de": "dos"}, + {"name": "Dragon Data Dragon 32", "batocera": "", "es-de": "dragon32"}, + {"name": "Sega Dreamcast", "batocera": "dreamcast", "es-de": "dreamcast"}, + {"name": "EasyRPG Game Engine", "batocera": "", "es-de": "easyrpg"}, + {"name": "Acorn Electron", "batocera": "", "es-de": "electron"}, + {"name": "Emulators", "batocera": "", "es-de": "emulators"}, + {"name": "Epic Games Store", "batocera": "", "es-de": "epic"}, + {"name": "Nintendo Family Computer", "batocera": "", "es-de": "famicom"}, + {"name": "FinalBurn Alpha", "batocera": "", "es-de": "fba"}, + {"name": "FinalBurn Neo", "batocera": "fbneo", "es-de": "fbneo"}, + {"name": "Nintendo Famicom Disk System", "batocera": "", "es-de": "fds"}, + {"name": "Adobe Flash", "batocera": "", "es-de": "flash"}, + {"name": "Fujitsu FM-7", "batocera": "", "es-de": "fm7"}, + {"name": "Fujitsu FM Towns", "batocera": "", "es-de": "fmtowns"}, + {"name": "Future Pinball", "batocera": "", "es-de": "fpinball"}, + {"name": "Bit Corporation Gamate", "batocera": "", "es-de": "gamate"}, + {"name": "Nintendo Game and Watch", "batocera": "", "es-de": "gameandwatch"}, + {"name": "Tiger Electronics Game.com", "batocera": "", "es-de": "gamecom"}, + {"name": "Sega Game Gear", "batocera": "gamegear", "es-de": "gamegear"}, + {"name": "Nintendo Game Boy", "batocera": "gb", "es-de": "gb"}, + {"name": "Nintendo Game Boy Advance", "batocera": "gba", "es-de": "gba"}, + {"name": "Nintendo Game Boy Color", "batocera": "gbc", "es-de": "gbc"}, + {"name": "Nintendo GameCube", "batocera": "", "es-de": "gc"}, + {"name": "Sega Genesis", "batocera": "", "es-de": "genesis"}, + {"name": "Hartung Game Master", "batocera": "", "es-de": "gmaster"}, + {"name": "Amstrad GX4000", "batocera": "", "es-de": "gx4000"}, + { + "name": "Mattel Electronics Intellivision", + "batocera": "", + "es-de": "intellivision", + }, + {"name": "Java 2 Micro Edition (J2ME)", "batocera": "", "es-de": "j2me"}, + {"name": "Kodi Home Theatre Software", "batocera": "", "es-de": "kodi"}, + {"name": "LaserDisc Games", "batocera": "", "es-de": "laserdisc"}, + {"name": "LCD Handheld Games", "batocera": "", "es-de": "lcdgames"}, + {"name": "LowRes NX Fantasy Console", "batocera": "", "es-de": "lowresnx"}, + {"name": "Lutro Game Engine", "batocera": "", "es-de": "lutro"}, + {"name": "Apple Macintosh", "batocera": "", "es-de": "macintosh"}, + {"name": "Multiple Arcade Machine Emulator", "batocera": "mame", "es-de": "mame"}, + {"name": "AdvanceMAME", "batocera": "", "es-de": "mame-advmame"}, + {"name": "Sega Master System", "batocera": "", "es-de": "mastersystem"}, + {"name": "Sega Mega-CD", "batocera": "", "es-de": "megacd"}, + {"name": "Sega Mega-CD", "batocera": "", "es-de": "megacdjp"}, + {"name": "Sega Mega Drive", "batocera": "megadrive", "es-de": "megadrive"}, + {"name": "Sega Mega Drive", "batocera": "", "es-de": "megadrivejp"}, + {"name": "Creatronic Mega Duck", "batocera": "", "es-de": "megaduck"}, + {"name": "Multi Emulator Super System", "batocera": "", "es-de": "mess"}, + {"name": "Sega Model 2", "batocera": "model2", "es-de": "model2"}, + {"name": "Sega Model 3", "batocera": "model3", "es-de": "model3"}, + {"name": "Thomson MO/TO Series", "batocera": "", "es-de": "moto"}, + {"name": "MSX", "batocera": "", "es-de": "msx"}, + {"name": "MSX1", "batocera": "", "es-de": "msx1"}, + {"name": "MSX2", "batocera": "", "es-de": "msx2"}, + {"name": "MSX Turbo R", "batocera": "", "es-de": "msxturbor"}, + {"name": "M.U.G.E.N Game Engine", "batocera": "", "es-de": "mugen"}, + {"name": "Othello Multivision", "batocera": "", "es-de": "multivision"}, + {"name": "Nintendo 3DS", "batocera": "", "es-de": "n3ds"}, + {"name": "Nintendo 64", "batocera": "n64", "es-de": "n64"}, + {"name": "Nintendo 64DD", "batocera": "", "es-de": "n64dd"}, + {"name": "Sega NAOMI", "batocera": "naomi", "es-de": "naomi"}, + {"name": "Sega NAOMI 2", "batocera": "naomi2", "es-de": "naomi2"}, + {"name": "Sega NAOMI GD-ROM", "batocera": "", "es-de": "naomigd"}, + {"name": "Nintendo DS", "batocera": "", "es-de": "nds"}, + {"name": "SNK Neo Geo", "batocera": "neogeo", "es-de": "neogeo"}, + {"name": "SNK Neo Geo CD", "batocera": "neogeocd", "es-de": "neogeocd"}, + {"name": "SNK Neo Geo CD", "batocera": "", "es-de": "neogeocdjp"}, + {"name": "Nintendo Entertainment System", "batocera": "nes", "es-de": "nes"}, + {"name": "Nokia N-Gage", "batocera": "", "es-de": "ngage"}, + {"name": "SNK Neo Geo Pocket", "batocera": "ngp", "es-de": "ngp"}, + {"name": "SNK Neo Geo Pocket Color", "batocera": "ngpc", "es-de": "ngpc"}, + {"name": "Magnavox Odyssey 2", "batocera": "", "es-de": "odyssey2"}, + {"name": "OpenBOR Game Engine", "batocera": "", "es-de": "openbor"}, + {"name": "Tangerine Computer Systems Oric", "batocera": "", "es-de": "oric"}, + {"name": "Palm OS", "batocera": "", "es-de": "palm"}, + {"name": "IBM PC", "batocera": "", "es-de": "pc"}, + {"name": "NEC PC-8800 Series", "batocera": "", "es-de": "pc88"}, + {"name": "NEC PC-9800 Series", "batocera": "", "es-de": "pc98"}, + {"name": "PC Arcade Systems", "batocera": "", "es-de": "pcarcade"}, + {"name": "NEC PC Engine", "batocera": "pcengine", "es-de": "pcengine"}, + {"name": "NEC PC Engine CD", "batocera": "pcenginecd", "es-de": "pcenginecd"}, + {"name": "NEC PC-FX", "batocera": "", "es-de": "pcfx"}, + {"name": "PICO-8 Fantasy Console", "batocera": "", "es-de": "pico8"}, + {"name": "Commodore Plus/4", "batocera": "", "es-de": "plus4"}, + {"name": "Nintendo Pokémon Mini", "batocera": "", "es-de": "pokemini"}, + {"name": "Ports", "batocera": "", "es-de": "ports"}, + {"name": "Sony PlayStation 2", "batocera": "", "es-de": "ps2"}, + {"name": "Sony PlayStation 3", "batocera": "", "es-de": "ps3"}, + {"name": "Sony PlayStation Portable", "batocera": "psp", "es-de": "psp"}, + {"name": "Sony PlayStation Vita", "batocera": "", "es-de": "psvita"}, + {"name": "Sony PlayStation", "batocera": "psx", "es-de": "psx"}, + {"name": "Casio PV-1000", "batocera": "", "es-de": "pv1000"}, + {"name": "Quake", "batocera": "", "es-de": "quake"}, + {"name": "MGT SAM Coupé", "batocera": "", "es-de": "samcoupe"}, + {"name": "Nintendo Satellaview", "batocera": "", "es-de": "satellaview"}, + {"name": "Sega Saturn", "batocera": "saturn", "es-de": "saturn"}, + {"name": "Sega Saturn", "batocera": "", "es-de": "saturnjp"}, + {"name": "ScummVM Game Engine", "batocera": "", "es-de": "scummvm"}, + {"name": "Epoch Super Cassette Vision", "batocera": "", "es-de": "scv"}, + {"name": "Sega Mega Drive 32X", "batocera": "sega32x", "es-de": "sega32x"}, + {"name": "Sega Super 32X", "batocera": "", "es-de": "sega32xjp"}, + {"name": "Sega Genesis 32X", "batocera": "", "es-de": "sega32xna"}, + {"name": "Sega CD", "batocera": "segacd", "es-de": "segacd"}, + {"name": "Nintendo SFC (Super Famicom)", "batocera": "", "es-de": "sfc"}, + {"name": "Sega SG-1000", "batocera": "sg1000", "es-de": "sg-1000"}, + {"name": "Nintendo Super Game Boy", "batocera": "", "es-de": "sgb"}, + {"name": "Nintendo SNES (Super Nintendo)", "batocera": "snes", "es-de": "snes"}, + {"name": "Nintendo SNES (Super Nintendo)", "batocera": "", "es-de": "snesna"}, + {"name": "Solarus Game Engine", "batocera": "", "es-de": "solarus"}, + {"name": "Spectravideo", "batocera": "", "es-de": "spectravideo"}, + {"name": "Valve Steam", "batocera": "", "es-de": "steam"}, + {"name": "Sega Titan Video Game System", "batocera": "", "es-de": "stv"}, + {"name": "Bandai SuFami Turbo", "batocera": "", "es-de": "sufami"}, + {"name": "NEC SuperGrafx", "batocera": "", "es-de": "supergrafx"}, + {"name": "Watara Supervision", "batocera": "", "es-de": "supervision"}, + {"name": "Funtech Super A'Can", "batocera": "", "es-de": "supracan"}, + {"name": "Nintendo Switch", "batocera": "", "es-de": "switch"}, + {"name": "Symbian", "batocera": "", "es-de": "symbian"}, + {"name": "Tano Dragon", "batocera": "", "es-de": "tanodragon"}, + {"name": "NEC TurboGrafx-CD", "batocera": "", "es-de": "tg-cd"}, + {"name": "NEC TurboGrafx-16", "batocera": "", "es-de": "tg16"}, + {"name": "Texas Instruments TI-99", "batocera": "", "es-de": "ti99"}, + {"name": "TIC-80 Fantasy Computer", "batocera": "", "es-de": "tic80"}, + {"name": "Thomson TO8", "batocera": "", "es-de": "to8"}, + {"name": "Namco-Sega-Nintendo Triforce", "batocera": "", "es-de": "triforce"}, + {"name": "Tandy TRS-80", "batocera": "", "es-de": "trs-80"}, + {"name": "Taito Type X", "batocera": "", "es-de": "type-x"}, + {"name": "Uzebox Open Source Console", "batocera": "", "es-de": "uzebox"}, + {"name": "GCE Vectrex", "batocera": "", "es-de": "vectrex"}, + {"name": "Commodore VIC-20", "batocera": "", "es-de": "vic20"}, + {"name": "Philips Videopac G7000", "batocera": "", "es-de": "videopac"}, + {"name": "Nintendo Virtual Boy", "batocera": "", "es-de": "virtualboy"}, + {"name": "Visual Pinball", "batocera": "", "es-de": "vpinball"}, + {"name": "VTech V.Smile", "batocera": "", "es-de": "vsmile"}, + {"name": "WASM-4 Fantasy Console", "batocera": "", "es-de": "wasm4"}, + {"name": "Nintendo Wii", "batocera": "", "es-de": "wii"}, + {"name": "Nintendo Wii U", "batocera": "", "es-de": "wiiu"}, + {"name": "Microsoft Windows", "batocera": "", "es-de": "windows"}, + {"name": "Microsoft Windows 3.x", "batocera": "", "es-de": "windows3x"}, + {"name": "Microsoft Windows 9x", "batocera": "", "es-de": "windows9x"}, + {"name": "Bandai WonderSwan", "batocera": "wswan", "es-de": "wonderswan"}, + { + "name": "Bandai WonderSwan Color", + "batocera": "wswanc", + "es-de": "wonderswancolor", + }, + {"name": "Sharp X1", "batocera": "", "es-de": "x1"}, + {"name": "Sharp X68000", "batocera": "", "es-de": "x68000"}, + {"name": "Microsoft Xbox", "batocera": "", "es-de": "xbox"}, + {"name": "Microsoft Xbox 360", "batocera": "", "es-de": "xbox360"}, + {"name": "Infocom Z-machine", "batocera": "", "es-de": "zmachine"}, + {"name": "Sinclair ZX81", "batocera": "", "es-de": "zx81"}, + {"name": "Sinclair ZX Spectrum Next", "batocera": "", "es-de": "zxnext"}, + {"name": "Sinclair ZX Spectrum", "batocera": "", "es-de": "zxspectrum"}, +] + +ES_DE_MEDIA = [ + "3dboxes", + "backcovers", + "covers", + "fanart", + "manuals", + "marquees", + "miximages", + "physicalmedia", + "screenshots", + "titlescreens", + "videos", +] + +BATOCERA_MEDIA = [ + "boxart", + "cartridge", + "image", + "marquee", + "mix", + "screenshot", + "video", + "wheel", +] + +RELACION = [ + {"batocera": "-boxart.", "es-de": "covers"}, + {"batocera": "-cartridge.", "es-de": "physicalmedia"}, + {"batocera": "-marquee.", "es-de": "marquees"}, + {"batocera": "-mix.", "es-de": "miximages"}, + {"batocera": "-screenshot.", "es-de": "screenshots"}, + {"batocera": "-video.", "es-de": "videos"}, +] diff --git a/python/media_mover/media_mover.py b/python/media_mover/media_mover.py new file mode 100644 index 0000000..7915ee3 --- /dev/null +++ b/python/media_mover/media_mover.py @@ -0,0 +1,89 @@ +from config import ROM_FOLDERS, CONFIG_FOLDERS, SYSTEMS, ES_DE_MEDIA, BATOCERA_MEDIA, RELACION +import os +import shutil +import time + +def getRomPath(frontend): + for folder in ROM_FOLDERS: + if folder["frontend"] == frontend: + return folder["path"] + return None + +def getConfigPath(frontend): + for folder in CONFIG_FOLDERS: + if folder["frontend"] == frontend: + return folder["path"] + return None + +def getSystemShortName(name, frontend): + for system in SYSTEMS: + if system["name"].lower() == name.lower(): + return system[frontend] + return None + + +def verificar_sistemas_y_carpetas(sistemas, carpetas): + resultados = [] + for sistema in sistemas: + if sistema["batocera"] and sistema["es-de"]: + carpetas_existentes = True + for carpeta in carpetas: + ruta = os.path.join(carpeta["path"], sistema[carpeta["frontend"]]) + if not os.path.isdir(ruta): + carpetas_existentes = False + break + resultados.append((sistema["name"], carpetas_existentes)) + return resultados + +def copiar_archivos(origen, destino): + try: + # Crear la carpeta de destino si no existe + if not os.path.exists(origen): + return + if not os.path.exists(destino): + os.makedirs(destino) + + # Copiar todos los archivos + for archivo in os.listdir(origen): + #print(archivo) + ruta_origen = os.path.join(origen, archivo) + if os.path.isfile(ruta_origen): + for relacion in RELACION: + if relacion["batocera"] in archivo: + final_file = archivo.replace(relacion["batocera"][:-1], "") + destino_carpeta = os.path.join(destino, relacion["es-de"]) + if not os.path.exists(destino_carpeta): + os.makedirs(destino_carpeta) + ruta_destino = os.path.join(destino_carpeta, final_file) + if not os.path.exists(ruta_destino): + shutil.copy2(ruta_origen, ruta_destino) + print(f"Archivo {archivo} copiado a {ruta_destino}") + break + + except Exception as e: + print(f"Error al copiar archivos: {e}") + +def copy_media(system): + batocera_short_name = getSystemShortName(system, "batocera") + es_de_short_name = getSystemShortName(system, "es-de") + origen = os.path.join(getRomPath("batocera"), batocera_short_name, getConfigPath("batocera")) + destino = os.path.join(getConfigPath("es-de"), "downloaded_media", es_de_short_name) + #print(origen) + #print(destino) + copiar_archivos(origen, destino) + + + +def main(): + # Ejecutar y mostrar resultados + resultados = verificar_sistemas_y_carpetas(SYSTEMS, ROM_FOLDERS) + #resultados = [("ATARI LYNX", True)] + for sistema, existe in resultados: + if existe: + print(f"\nCopiando medios del sistema: {sistema.upper()}") + time.sleep(2) + copy_media(sistema) + + +if __name__ == "__main__": + main() diff --git a/python/media_mover/requirements.txt b/python/media_mover/requirements.txt new file mode 100644 index 0000000..e69de29