From 4dc018562900234cc0cd9723d92b475d4ac88026 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 14 Jul 2023 11:09:57 -0400 Subject: [PATCH] Update Listxml deserialization test, fix issues --- SabreTools.Models/Listxml/Chip.cs | 4 + SabreTools.Models/Listxml/Disk.cs | 4 + SabreTools.Models/Listxml/Driver.cs | 14 +- SabreTools.Models/Listxml/Game.cs | 12 + SabreTools.Models/Listxml/GameBase.cs | 109 + SabreTools.Models/Listxml/Input.cs | 9 +- SabreTools.Models/Listxml/Machine.cs | 103 +- SabreTools.Models/Listxml/Mame.cs | 5 +- SabreTools.Models/Listxml/Rom.cs | 8 + SabreTools.Models/Listxml/Video.cs | 49 + .../Serialization/DeserializationTests.cs | 71 +- ...iles.xml.gz => test-listxml-files1.xml.gz} | Bin .../TestData/test-listxml-files2.xml | 283688 +++++++++++++++ 13 files changed, 283942 insertions(+), 134 deletions(-) create mode 100644 SabreTools.Models/Listxml/Game.cs create mode 100644 SabreTools.Models/Listxml/GameBase.cs create mode 100644 SabreTools.Models/Listxml/Video.cs rename SabreTools.Test/TestData/{test-listxml-files.xml.gz => test-listxml-files1.xml.gz} (100%) create mode 100644 SabreTools.Test/TestData/test-listxml-files2.xml diff --git a/SabreTools.Models/Listxml/Chip.cs b/SabreTools.Models/Listxml/Chip.cs index 91d4771f..9ce6ddf4 100644 --- a/SabreTools.Models/Listxml/Chip.cs +++ b/SabreTools.Models/Listxml/Chip.cs @@ -16,6 +16,10 @@ namespace SabreTools.Models.Listxml [XmlAttribute("type")] public string Type { get; set; } + /// Only present in older versions + [XmlAttribute("soundonly")] + public string SoundOnly { get; set; } + [XmlAttribute("clock")] public string? Clock { get; set; } diff --git a/SabreTools.Models/Listxml/Disk.cs b/SabreTools.Models/Listxml/Disk.cs index 20b2ab27..5807ce5f 100644 --- a/SabreTools.Models/Listxml/Disk.cs +++ b/SabreTools.Models/Listxml/Disk.cs @@ -9,6 +9,10 @@ namespace SabreTools.Models.Listxml [XmlAttribute("name")] public string Name { get; set; } + /// Only present in older versions + [XmlAttribute("md5")] + public string? MD5 { get; set; } + [XmlAttribute("sha1")] public string? SHA1 { get; set; } diff --git a/SabreTools.Models/Listxml/Driver.cs b/SabreTools.Models/Listxml/Driver.cs index 2a413d72..b339fc03 100644 --- a/SabreTools.Models/Listxml/Driver.cs +++ b/SabreTools.Models/Listxml/Driver.cs @@ -6,10 +6,22 @@ namespace SabreTools.Models.Listxml [XmlRoot("driver")] public class Driver { - /// (good|imperfect|preliminary) + /// (good|imperfect|preliminary), (good|preliminary|test) in older versions [XmlAttribute("status")] public string Status { get; set; } + /// (good|imperfect|preliminary), Only present in older versions + [XmlAttribute("color")] + public string Color { get; set; } + + /// (good|imperfect|preliminary), Only present in older versions + [XmlAttribute("sound")] + public string Sound { get; set; } + + /// Only present in older versions + [XmlAttribute("palettesize")] + public string PaletteSize { get; set; } + /// (good|imperfect|preliminary) [XmlAttribute("emulation")] public string Emulation { get; set; } diff --git a/SabreTools.Models/Listxml/Game.cs b/SabreTools.Models/Listxml/Game.cs new file mode 100644 index 00000000..857657e4 --- /dev/null +++ b/SabreTools.Models/Listxml/Game.cs @@ -0,0 +1,12 @@ +using System.Xml.Serialization; + +namespace SabreTools.Models.Listxml +{ + [XmlRoot("game")] + public class Game : GameBase + { + /// Appears after Manufacturer + [XmlElement("history")] + public string? History { get; set; } + } +} \ No newline at end of file diff --git a/SabreTools.Models/Listxml/GameBase.cs b/SabreTools.Models/Listxml/GameBase.cs new file mode 100644 index 00000000..680b7d67 --- /dev/null +++ b/SabreTools.Models/Listxml/GameBase.cs @@ -0,0 +1,109 @@ +using System.Xml; +using System.Xml.Serialization; + +namespace SabreTools.Models.Listxml +{ + /// + /// Base class to unify the various game-like types + /// + public abstract class GameBase + { + [XmlAttribute("name")] + public string Name { get; set; } + + /// (yes|no) "no" + [XmlAttribute("runnable")] + public string? Runnable { get; set; } + + [XmlAttribute("cloneof")] + public string? CloneOf { get; set; } + + [XmlAttribute("romof")] + public string? RomOf { get; set; } + + [XmlAttribute("sampleof")] + public string? SampleOf { get; set; } + + [XmlElement("description")] + public string Description { get; set; } + + [XmlElement("year")] + public string? Year { get; set; } + + [XmlElement("manufacturer")] + public string? Manufacturer { get; set; } + + [XmlElement("biosset")] + public BiosSet[]? BiosSet { get; set; } + + [XmlElement("rom")] + public Rom[]? Rom { get; set; } + + [XmlElement("disk")] + public Disk[]? Disk { get; set; } + + [XmlElement("device_ref")] + public DeviceRef[]? DeviceRef { get; set; } + + [XmlElement("sample")] + public Sample[]? Sample { get; set; } + + [XmlElement("chip")] + public Chip[]? Chip { get; set; } + + [XmlElement("display")] + public Display[]? Display { get; set; } + + /// Only present in older versions + [XmlElement("video")] + public Video[]? Video { get; set; } + + [XmlElement("sound")] + public Sound? Sound { get; set; } + + [XmlElement("input")] + public Input? Input { get; set; } + + [XmlElement("dipswitch")] + public DipSwitch[]? DipSwitch { get; set; } + + [XmlElement("configuration")] + public Configuration[]? Configuration { get; set; } + + [XmlElement("port")] + public Port[]? Port { get; set; } + + [XmlElement("adjuster")] + public Adjuster[]? Adjuster { get; set; } + + [XmlElement("driver")] + public Driver? Driver { get; set; } + + [XmlElement("feature")] + public Feature[]? Feature { get; set; } + + [XmlElement("device")] + public Device[]? Device { get; set; } + + [XmlElement("slot")] + public Slot[]? Slot { get; set; } + + [XmlElement("softwarelist")] + public SoftwareList[]? SoftwareList { get; set; } + + [XmlElement("ramoption")] + public RamOption[]? RamOption { get; set; } + + #region DO NOT USE IN PRODUCTION + + /// Should be empty + [XmlAnyAttribute] + public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; } + + /// Should be empty + [XmlAnyElement] + public object[]? ADDITIONAL_ELEMENTS { get; set; } + + #endregion + } +} \ No newline at end of file diff --git a/SabreTools.Models/Listxml/Input.cs b/SabreTools.Models/Listxml/Input.cs index 8bd04e3e..3480dc46 100644 --- a/SabreTools.Models/Listxml/Input.cs +++ b/SabreTools.Models/Listxml/Input.cs @@ -18,11 +18,18 @@ namespace SabreTools.Models.Listxml [XmlAttribute("players")] public string Players { get; set; } + /// Only present in older versions + [XmlAttribute("control")] + public string? ControlAttr { get; set; } + + /// Only present in older versions, Numeric? + [XmlAttribute("buttons")] + public string Buttons { get; set; } + /// Numeric? [XmlAttribute("coins")] public string? Coins { get; set; } - /// Numeric? [XmlElement("control")] public Control[]? Control { get; set; } diff --git a/SabreTools.Models/Listxml/Machine.cs b/SabreTools.Models/Listxml/Machine.cs index 3533aa4d..f25894dc 100644 --- a/SabreTools.Models/Listxml/Machine.cs +++ b/SabreTools.Models/Listxml/Machine.cs @@ -1,118 +1,25 @@ -using System.Xml; using System.Xml.Serialization; namespace SabreTools.Models.Listxml { [XmlRoot("machine")] - public class Machine + public class Machine : GameBase { - [XmlAttribute("name")] - public string Name { get; set; } + /// Appears after Name [XmlAttribute("sourcefile")] public string? SourceFile { get; set; } - /// (yes|no) "no" + /// (yes|no) "no", Appears after SourceFile [XmlAttribute("isbios")] public string? IsBios { get; set; } - /// (yes|no) "no" + /// (yes|no) "no", Appears after IsBios [XmlAttribute("isdevice")] public string? IsDevice { get; set; } - /// (yes|no) "no" + /// (yes|no) "no", Appears after IsDevice [XmlAttribute("ismechanical")] public string? IsMechanical { get; set; } - - /// (yes|no) "no" - [XmlAttribute("runnable")] - public string? Runnable { get; set; } - - [XmlAttribute("cloneof")] - public string? CloneOf { get; set; } - - [XmlAttribute("romof")] - public string? RomOf { get; set; } - - [XmlAttribute("sampleof")] - public string? SampleOf { get; set; } - - [XmlElement("description")] - public string Description { get; set; } - - [XmlElement("year")] - public string? Year { get; set; } - - [XmlElement("manufacturer")] - public string? Manufacturer { get; set; } - - [XmlElement("biosset")] - public BiosSet[]? BiosSet { get; set; } - - [XmlElement("rom")] - public Rom[]? Rom { get; set; } - - [XmlElement("disk")] - public Disk[]? Disk { get; set; } - - [XmlElement("device_ref")] - public DeviceRef[]? DeviceRef { get; set; } - - [XmlElement("sample")] - public Sample[]? Sample { get; set; } - - [XmlElement("chip")] - public Chip[]? Chip { get; set; } - - [XmlElement("display")] - public Display[]? Display { get; set; } - - [XmlElement("sound")] - public Sound? Sound { get; set; } - - [XmlElement("input")] - public Input? Input { get; set; } - - [XmlElement("dipswitch")] - public DipSwitch[]? DipSwitch { get; set; } - - [XmlElement("configuration")] - public Configuration[]? Configuration { get; set; } - - [XmlElement("port")] - public Port[]? Port { get; set; } - - [XmlElement("adjuster")] - public Adjuster[]? Adjuster { get; set; } - - [XmlElement("driver")] - public Driver? Driver { get; set; } - - [XmlElement("feature")] - public Feature[]? Feature { get; set; } - - [XmlElement("device")] - public Device[]? Device { get; set; } - - [XmlElement("slot")] - public Slot[]? Slot { get; set; } - - [XmlElement("softwarelist")] - public SoftwareList[]? SoftwareList { get; set; } - - [XmlElement("ramoption")] - public RamOption[]? RamOption { get; set; } - - #region DO NOT USE IN PRODUCTION - - /// Should be empty - [XmlAnyAttribute] - public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; } - - /// Should be empty - [XmlAnyElement] - public object[]? ADDITIONAL_ELEMENTS { get; set; } - - #endregion } } \ No newline at end of file diff --git a/SabreTools.Models/Listxml/Mame.cs b/SabreTools.Models/Listxml/Mame.cs index a94ec3ba..6b03008e 100644 --- a/SabreTools.Models/Listxml/Mame.cs +++ b/SabreTools.Models/Listxml/Mame.cs @@ -16,8 +16,9 @@ namespace SabreTools.Models.Listxml [XmlAttribute("mameconfig")] public string MameConfig { get; set; } - [XmlElement("machine")] - public Machine[] Machine { get; set; } + [XmlElement("machine", typeof(Machine))] + [XmlElement("game", typeof(Game))] + public GameBase[] Game { get; set; } #region DO NOT USE IN PRODUCTION diff --git a/SabreTools.Models/Listxml/Rom.cs b/SabreTools.Models/Listxml/Rom.cs index c1b4042f..0b49ca6d 100644 --- a/SabreTools.Models/Listxml/Rom.cs +++ b/SabreTools.Models/Listxml/Rom.cs @@ -39,6 +39,14 @@ namespace SabreTools.Models.Listxml [XmlAttribute("optional")] public string? Optional { get; set; } + /// (yes|no) "no", Only present in older versions + [XmlAttribute("dispose")] + public string? Dispose { get; set; } + + /// (yes|no) "no", Only present in older versions + [XmlAttribute("soundonly")] + public string? SoundOnly { get; set; } + #region DO NOT USE IN PRODUCTION /// Should be empty diff --git a/SabreTools.Models/Listxml/Video.cs b/SabreTools.Models/Listxml/Video.cs new file mode 100644 index 00000000..d383eb5f --- /dev/null +++ b/SabreTools.Models/Listxml/Video.cs @@ -0,0 +1,49 @@ +using System.Xml; +using System.Xml.Serialization; + +namespace SabreTools.Models.Listxml +{ + [XmlRoot("video")] + public class Video + { + /// (raster|vector) + [XmlAttribute("screen")] + public string Screen { get; set; } + + /// (vertical|horizontal) + [XmlAttribute("orientation")] + public string Orientation { get; set; } + + /// Numeric? + [XmlAttribute("width")] + public string? Width { get; set; } + + /// Numeric? + [XmlAttribute("height")] + public string? Height { get; set; } + + /// Numeric? + [XmlAttribute("aspectx")] + public string? AspectX { get; set; } + + /// Numeric? + [XmlAttribute("aspecty")] + public string? AspectY { get; set; } + + /// Numeric? + [XmlAttribute("refresh")] + public string? Refresh { get; set; } + + #region DO NOT USE IN PRODUCTION + + /// Should be empty + [XmlAnyAttribute] + public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; } + + /// Should be empty + [XmlAnyElement] + public object[]? ADDITIONAL_ELEMENTS { get; set; } + + #endregion + } +} \ No newline at end of file diff --git a/SabreTools.Test/Serialization/DeserializationTests.cs b/SabreTools.Test/Serialization/DeserializationTests.cs index c745da62..a32042c9 100644 --- a/SabreTools.Test/Serialization/DeserializationTests.cs +++ b/SabreTools.Test/Serialization/DeserializationTests.cs @@ -224,7 +224,8 @@ namespace SabreTools.Test.Parser } [Theory] - [InlineData("test-listxml-files.xml.gz", 45861)] + [InlineData("test-listxml-files1.xml.gz", 45861)] + [InlineData("test-listxml-files2.xml", 3998)] public void ListxmlDeserializeTest(string path, long count) { // Open the file for reading @@ -234,78 +235,84 @@ namespace SabreTools.Test.Parser var dat = Serialization.Listxml.Deserialize(filename); // Validate the values - Assert.NotNull(dat?.Machine); - Assert.Equal(count, dat.Machine.Length); + Assert.NotNull(dat?.Game); + Assert.Equal(count, dat.Game.Length); // Validate we're not missing any attributes or elements Assert.Null(dat.ADDITIONAL_ATTRIBUTES); Assert.Null(dat.ADDITIONAL_ELEMENTS); - foreach (var machine in dat.Machine) + foreach (var game in dat.Game) { - Assert.Null(machine.ADDITIONAL_ATTRIBUTES); - Assert.Null(machine.ADDITIONAL_ELEMENTS); + Assert.Null(game.ADDITIONAL_ATTRIBUTES); + Assert.Null(game.ADDITIONAL_ELEMENTS); - foreach (var biosset in machine.BiosSet ?? Array.Empty()) + foreach (var biosset in game.BiosSet ?? Array.Empty()) { Assert.Null(biosset.ADDITIONAL_ATTRIBUTES); Assert.Null(biosset.ADDITIONAL_ELEMENTS); } - foreach (var rom in machine.Rom ?? Array.Empty()) + foreach (var rom in game.Rom ?? Array.Empty()) { Assert.Null(rom.ADDITIONAL_ATTRIBUTES); Assert.Null(rom.ADDITIONAL_ELEMENTS); } - foreach (var disk in machine.Disk ?? Array.Empty()) + foreach (var disk in game.Disk ?? Array.Empty()) { Assert.Null(disk.ADDITIONAL_ATTRIBUTES); Assert.Null(disk.ADDITIONAL_ELEMENTS); } - foreach (var deviceRef in machine.DeviceRef ?? Array.Empty()) + foreach (var deviceRef in game.DeviceRef ?? Array.Empty()) { Assert.Null(deviceRef.ADDITIONAL_ATTRIBUTES); Assert.Null(deviceRef.ADDITIONAL_ELEMENTS); } - foreach (var sample in machine.Sample ?? Array.Empty()) + foreach (var sample in game.Sample ?? Array.Empty()) { Assert.Null(sample.ADDITIONAL_ATTRIBUTES); Assert.Null(sample.ADDITIONAL_ELEMENTS); } - foreach (var chip in machine.Chip ?? Array.Empty()) + foreach (var chip in game.Chip ?? Array.Empty()) { Assert.Null(chip.ADDITIONAL_ATTRIBUTES); Assert.Null(chip.ADDITIONAL_ELEMENTS); } - foreach (var display in machine.Display ?? Array.Empty()) + foreach (var display in game.Display ?? Array.Empty()) { Assert.Null(display.ADDITIONAL_ATTRIBUTES); Assert.Null(display.ADDITIONAL_ELEMENTS); } - if (machine.Sound != null) + foreach (var video in game.Video ?? Array.Empty()) { - Assert.Null(machine.Sound.ADDITIONAL_ATTRIBUTES); - Assert.Null(machine.Sound.ADDITIONAL_ELEMENTS); + Assert.Null(video.ADDITIONAL_ATTRIBUTES); + Assert.Null(video.ADDITIONAL_ELEMENTS); } - if (machine.Input != null) + if (game.Sound != null) { - Assert.Null(machine.Input.ADDITIONAL_ATTRIBUTES); - Assert.Null(machine.Input.ADDITIONAL_ELEMENTS); + Assert.Null(game.Sound.ADDITIONAL_ATTRIBUTES); + Assert.Null(game.Sound.ADDITIONAL_ELEMENTS); + } - foreach (var control in machine.Input.Control ?? Array.Empty()) + if (game.Input != null) + { + Assert.Null(game.Input.ADDITIONAL_ATTRIBUTES); + Assert.Null(game.Input.ADDITIONAL_ELEMENTS); + + foreach (var control in game.Input.Control ?? Array.Empty()) { Assert.Null(control.ADDITIONAL_ATTRIBUTES); Assert.Null(control.ADDITIONAL_ELEMENTS); } } - foreach (var dipswitch in machine.DipSwitch ?? Array.Empty()) + foreach (var dipswitch in game.DipSwitch ?? Array.Empty()) { Assert.Null(dipswitch.ADDITIONAL_ATTRIBUTES); Assert.Null(dipswitch.ADDITIONAL_ELEMENTS); @@ -335,7 +342,7 @@ namespace SabreTools.Test.Parser } } - foreach (var configuration in machine.Configuration ?? Array.Empty()) + foreach (var configuration in game.Configuration ?? Array.Empty()) { Assert.Null(configuration.ADDITIONAL_ATTRIBUTES); Assert.Null(configuration.ADDITIONAL_ELEMENTS); @@ -365,7 +372,7 @@ namespace SabreTools.Test.Parser } } - foreach (var port in machine.Port ?? Array.Empty()) + foreach (var port in game.Port ?? Array.Empty()) { Assert.Null(port.ADDITIONAL_ATTRIBUTES); Assert.Null(port.ADDITIONAL_ELEMENTS); @@ -377,7 +384,7 @@ namespace SabreTools.Test.Parser } } - foreach (var adjuster in machine.Adjuster ?? Array.Empty()) + foreach (var adjuster in game.Adjuster ?? Array.Empty()) { Assert.Null(adjuster.ADDITIONAL_ATTRIBUTES); Assert.Null(adjuster.ADDITIONAL_ELEMENTS); @@ -389,19 +396,19 @@ namespace SabreTools.Test.Parser } } - if (machine.Driver != null) + if (game.Driver != null) { - Assert.Null(machine.Driver.ADDITIONAL_ATTRIBUTES); - Assert.Null(machine.Driver.ADDITIONAL_ELEMENTS); + Assert.Null(game.Driver.ADDITIONAL_ATTRIBUTES); + Assert.Null(game.Driver.ADDITIONAL_ELEMENTS); } - foreach (var feature in machine.Feature ?? Array.Empty()) + foreach (var feature in game.Feature ?? Array.Empty()) { Assert.Null(feature.ADDITIONAL_ATTRIBUTES); Assert.Null(feature.ADDITIONAL_ELEMENTS); } - foreach (var device in machine.Device ?? Array.Empty()) + foreach (var device in game.Device ?? Array.Empty()) { Assert.Null(device.ADDITIONAL_ATTRIBUTES); Assert.Null(device.ADDITIONAL_ELEMENTS); @@ -419,7 +426,7 @@ namespace SabreTools.Test.Parser } } - foreach (var slot in machine.Slot ?? Array.Empty()) + foreach (var slot in game.Slot ?? Array.Empty()) { Assert.Null(slot.ADDITIONAL_ATTRIBUTES); Assert.Null(slot.ADDITIONAL_ELEMENTS); @@ -431,13 +438,13 @@ namespace SabreTools.Test.Parser } } - foreach (var softwarelist in machine.SoftwareList ?? Array.Empty()) + foreach (var softwarelist in game.SoftwareList ?? Array.Empty()) { Assert.Null(softwarelist.ADDITIONAL_ATTRIBUTES); Assert.Null(softwarelist.ADDITIONAL_ELEMENTS); } - foreach (var ramoption in machine.RamOption ?? Array.Empty()) + foreach (var ramoption in game.RamOption ?? Array.Empty()) { Assert.Null(ramoption.ADDITIONAL_ATTRIBUTES); Assert.Null(ramoption.ADDITIONAL_ELEMENTS); diff --git a/SabreTools.Test/TestData/test-listxml-files.xml.gz b/SabreTools.Test/TestData/test-listxml-files1.xml.gz similarity index 100% rename from SabreTools.Test/TestData/test-listxml-files.xml.gz rename to SabreTools.Test/TestData/test-listxml-files1.xml.gz diff --git a/SabreTools.Test/TestData/test-listxml-files2.xml b/SabreTools.Test/TestData/test-listxml-files2.xml new file mode 100644 index 00000000..f200061f --- /dev/null +++ b/SabreTools.Test/TestData/test-listxml-files2.xml @@ -0,0 +1,283688 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]> + + + + PuckMan (Japan set 1) + 1980 + Namco + + + + + + + + + + + + + + + PuckMan (Japan set 2) + 1980 + Namco + + + + + + + + + + + + + + + + + Pac-Man (Midway) + 1980 + [Namco] (Midway license) + + + + + + + + + + + + + + + PuckMan (harder?) + 1981 + Namco + + + + + + + + + + + + + + + Pac-Man (Midway, harder) + 1981 + [Namco] (Midway license) + + + + + + + + + + + + + + + Hangly-Man (set 1) + 1981 + hack + + + + + + + + + + + + + + + Hangly-Man (set 2) + 1981 + hack + + + + + + + + + + + + + + + + + New Puck-X + 1980 + hack + + + + + + + + + + + + + + + Pac-Man (Hearts) + 1981 + hack + + + + + + + + + + + + + + + + + + + + + Joyman + 1982 + hack + + + + + + + + + + + + + + + + + + + + + Newpuc2 + 1980 + hack + + + + + + + + + + + + + + + + + + + + + Newpuc2 (set 2) + 1980 + hack + + + + + + + + + + + + + + + + + + + + + Piranha + 1981 + GL (US Billiards License) + + + + + + + + + + + + + + + + + + + + + Piranha (older) + 1981 + GL (US Billiards License) + + + + + + + + + + + + + + + + + + + + + Piranha (hack) + 1981 + hack + + + + + + + + + + + + + + + + + Naughty Mouse (set 1) + 1981 + Amenip (Palcom Queen River) + + + + + + + + + + + + + + + + + + + + + Naughty Mouse (set 2) + 1981 + Amenip Nova Games Ltd. + + + + + + + + + + + + + + + + + + + + + Pac-Man Plus + 1982 + [Namco] (Midway license) + + + + + + + + + + + + + + + Ms. Pac-Man + 1981 + Midway + + + + + + + + + + + + + + + + + + Ms. Pac-Man (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + Ms. Pac Attack + 1981 + hack + + + + + + + + + + + + + + + + + + Ms. Pac-Man Plus + 1981 + hack + + + + + + + + + + + + + + + + + Pac-Gal + 1981 + hack + + + + + + + + + + + + + + + + + + Ms. Pacman Champion Edition / Super Zola Pac Gal + 1995 + hack + + + + + + + + + + + Make Trax (set 1) + 1981 + [Kural] (Williams license) + + + + + + + + + + + + + + + Make Trax (set 2) + 1981 + [Kural] (Williams license) + + + + + + + + + + + + + + + Korosuke Roller + 1981 + Kural Electric + + + + + + + + + + + + + + + Crush Roller (Kural Samno) + 1981 + Kural Samno Electric + + + + + + + + + + + + + + + Crush Roller (Kural Esco - bootleg?) + 1981 + Kural Esco Electric + + + + + + + + + + + + + + + + + + + + + Crush Roller (Kural - bootleg?) + 1981 + Kural Electric + + + + + + + + + + + + + + + + + + + + + Magic Brush + 1981 + bootleg + + + + + + + + + + + + + + + + + Paint Roller + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + Eyes (Digitrex Techstar) + 1982 + Digitrex Techstar (Rock-ola license) + + + + + + + + + + + + + + + Eyes (Techstar Inc.) + 1982 + Techstar Inc. (Rock-ola license) + + + + + + + + + + + + + + + Mr. TNT + 1983 + Telko + + + + + + + + + + + + + + + Eggor + 1983 + Telko + + + + + + + + + + + + + + + + + + + + + Ponpoko + 1982 + Sigma Ent. Inc. + + + + + + + + + + + + + + + + + + + Ponpoko (Venture Line) + 1982 + Sigma Ent. Inc. (Venture Line license) + + + + + + + + + + + + + + + + + + + Lizard Wizard + 1985 + Techstar (Sunn license) + + + + + + + + + + + + + + + + + The Glob (Pac-Man hardware) + 1983 + Epos Corporation + + + + + + + + + + + + + Beastie Feastie + 1984 + Epos Corporation + + + + + + + + + + + + + Atlantic City Action + 1983 + Epos Corporation + + + + + + + + + + + + + Boardwalk Casino + 1983 + Epos Corporation + + + + + + + + + + + + + Dream Shopper + 1982 + Sanritsu + + + + + + + + + + + + + + + + Van-Van Car + 1983 + Sanritsu + + + + + + + + + + + + + + + Van-Van Car (Karateco) + 1983 + Karateco + + + + + + + + + + + + + + + Ali Baba and 40 Thieves + 1982 + Sega + + + + + + + + + + + + + + + + + + + Pengo (set 1) + 1982 + Sega + + + + + + + + + + + + + + + + + + + Pengo (set 2) + 1982 + Sega + + + + + + + + + + + + + + + + + + + Pengo (set 2 not encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + + + Pengo (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + Penta + 1982 + bootleg + + + + + + + + + + + + + + + + + + + Jr. Pac-Man + 1983 + Bally Midway + + + + + + + + + + + + + + + + + Jump Shot + 1985 + Bally Midway + + + + + + + + + + + + + + + Shoot the Bull + 1985 + Bally Midway + + + + + + + + + + + + + + + Megadon + 1982 + Epos Corporation (Photar Industries license) + + + + + + + + + + + + + + Catapult + 1982 + Epos Corporation + + + + + + + + + + + + + + Super Glob + 1983 + Epos Corporation + + + + + + + + + + + + + + The Glob + 1983 + Epos Corporation + + + + + + + + + + + + + + The Glob (earlier) + 1983 + Epos Corporation + + + + + + + + + + + + + + The Glob (set 3) + 1983 + Epos Corporation + + + + + + + + + + + + + + IGMO + 1984 + Epos Corporation + + + + + + + + + + + + + + Galaxian (Namco set 1) + 1979 + Namco + + + + + + + + + + + + + Galaxian (Namco set 2) + 1979 + Namco + + + + + + + + + + + Galaxian (Midway) + 1979 + [Namco] (Midway license) + + + + + + + + + + + + + Galaxian (Midway, old rev) + 1979 + [Namco] (Midway license) + + + + + + + + + + + + + Super Galaxians + 1979 + hack + + + + + + + + + + + + Galaxian Part X + 1979 + hack + + + + + + + + + + + + + Moon Alien + [Nichibutsu] (Karateco license) + + + + + + + + + + + + + Space Invaders Galactica + 1979 + hack + + + + + + + + + + + + Galaxian Part 4 + 1979 + hack + + + + + + + + + + + + + Galaxian Turbo + 1979 + hack + + + + + + + + + + + + + Swarm + 1979 + hack + + + + + + + + + + + + + Zero Time + 1979 + Petaco S.A. + + + + + + + + + + + + + Ghostmuncher Galaxian (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + Pisces + Subelectro + + + + + + + + + + + + + + + + Pisces (bootleg) + bootleg + + + + + + + + + + + + + + + + UniWar S + 1980 + Irem + + + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu + 1980 + Irem + + + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu (bootleg set 1) + 1980 + bootleg + + + + + + + + + + + + + + + + + + Gingateikoku No Gyakushu (bootleg set 2) + 1980 + bootleg + + + + + + + + + + + + + + + + + + Space Battle + 1980 + bootleg + + + + + + + + + + + + + + + + + + Batman Part 2 + 1981 + bootleg + + + + + + + + + + + + + + + + + + War of the Bugs or Monsterous Manouvers in a Mushroom Maze + 1981 + Armenia + + + + + + + + + + + + + Defend the Terra Attack on the Red UFO + bootleg + + + + + + + + + + + + + + Exodus (bootleg?) + Subelectro + + + + + + + + + + + + + + + Streaking + 1981 + Shoei + + + + + + + + + + + + Pac-Man (Galaxian hardware) + 1981 + bootleg + + + + + + + + + + + + + + + + + Devil Fish (Galaxian hardware, bootleg?) + 1984 + Vision / Artic + + + + + + + + + + + + Zig Zag (Galaxian hardware, set 1) + 1982 + LAX + + + + + + + + + + + + Zig Zag (Galaxian hardware, set 2) + 1982 + LAX + + + + + + + + + + + + Jump Bug + 1981 + Rock-ola + + + + + + + + + + + + + + + + + + + Jump Bug (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + Levers + 1983 + Rock-ola + + + + + + + + + + + + + + + + Azurian Attack + 1982 + Rait Electronics Ltd + + + + + + + + + + + Orbitron + Signatron USA + + + + + + + + + + + + + Moon Cresta (Galaxian hardware) + 1980 + bootleg + + + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu, unencrypted) + 1980 + Nichibutsu USA + + + + + + + + + + + + + + + + + + Moon Cresta (Nichibutsu, old rev) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + Moon Cresta (Gremlin) + 1980 + Gremlin + + + + + + + + + + + + + + + + + + Super Moon Cresta + Gremlin + + + + + + + + + + + + + + + + + + Moon Cresta (bootleg set 1) + 1980 + bootleg + + + + + + + + + + + + + + + + + + Moon Cresta (bootleg set 2) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + Fantazia + 1980 + bootleg + + + + + + + + + + + + + + + + + + Moon Quasar + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + Moon Shuttle (US?) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + + Moon Shuttle (Japan) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + + Moon Alien Part 2 + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + Moon Alien Part 2 (older version) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + Eagle (set 1) + 1980 + Centuri + + + + + + + + + + + + + + + + + + Eagle (set 2) + 1980 + Centuri + + + + + + + + + + + + + + + + + + Sky Base + 1982 + Omori Electric Co., Ltd. + + + + + + + + + + + + + + + + Check Man + 1982 + Zilec-Zenitone + + + + + + + + + + + + + + + + + Check Man (Japan) + 1982 + Jaleco + + + + + + + + + + + + + Dingo + 1983 + Ashby Computers and Graphics LTD. (Jaleco license) + + + + + + + + + + + + + Black Hole + 1981 + TDS + + + + + + + + + + + + + + King & Balloon (US) + 1980 + Namco + + + + + + + + + + + + + + + + + King & Balloon (Japan) + 1980 + Namco + + + + + + + + + + + + + + + + + Scorpion (Moon Cresta hardware) + Dorneer + + + + + + + + + + + + + + + + + + Frog (Galaxian hardware) + 1981 + bootleg + + + + + + + + + + + + + + + 4 Fun in 1 + 1981 + Armenia / Food and Fun + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bagman (Moon Cresta hardware) + 1982 + bootleg + + + + + + + + + + + + + + + + Donkey Kong Jr. (Moon Cresta hardware) + 1982 + bootleg + + + + + + + + + + + + + + + + + Ozon I + 1983 + Proma + + + + + + + + + + + Rock Climber + 1981 + Taito + + + + + + + + + + + + + + + + + + + Scramble + 1981 + Konami + + + + + + + + + + + + + + + + + + + + + Scramble (Stern) + 1981 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + + + Scramble (Galaxian hardware) + 1981 + bootleg + + + + + + + + + + + + + + + + Battle of Atlantis (set 1) + 1981 + Comsoft + + + + + + + + + + + + + + + + + + + Battle of Atlantis (set 2) + 1981 + Comsoft + + + + + + + + + + + + + + + + + + + + + The End + 1980 + Konami + + + + + + + + + + + + + + + + + + The End (Stern) + 1980 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + Omega + bootleg? + + + + + + + + + + + + + + Crazy Kong (Scramble hardware) + 1981 + bootleg + + + + + + + + + + + + + + + + + + Frog + 1981 + bootleg + + + + + + + + + + + + + + + + + + Amidar (Scramble hardware) + 1982 + Konami + + + + + + + + + + + + + + + + + + + + Triple Punch + 1982 + KKI + + + + + + + + + + + + Knock Out!! + 1982 + KKK + + + + + + + + + + + + Mariner + 1981 + Amenip + + + + + + + + + + + + + + + 800 Fathoms + 1981 + Amenip (US Billiards Inc. license) + + + + + + + + + + + + + + + Mars + 1981 + Artic + + + + + + + + + + + + + + + + + + + Devil Fish + 1982 + Artic + + + + + + + + + + + + + + + + + + + + + New Sinbad 7 + 1983 + ATW USA, Inc. + + + + + + + + + + + + + + + + + + + Mr. Kougar + 1984 + ATW + + + + + + + + + + + + + + + Mr. Kougar (earlier) + 1983 + ATW + + + + + + + + + + + + + + + Mr. Kougar (bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + Hot Shocker + 1982 + E.G. Felaco + + + + + + + + + + + + + + + + Hunchback (Scramble hardware) + 1983 + Century + + + + + + + + + + + + + + + + + + + Cavelon + 1983 + Jetsoft + + + + + + + + + + + + + + SF-X + 1983 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Mighty Monkey + bootleg + + + + + + + + + + + + + + + + + + + + Mighty Monkey (bootleg on Super Cobra hardware) + bootleg + + + + + + + + + + + + + + + + + + + + Super Cobra + 1981 + Konami + + + + + + + + + + + + + + + + + + + Super Cobra (Stern) + 1981 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + Super Cobra (Sega) + 1981 + [Konami] (Sega license) + + + + + + + + + + + + + + + + + + + Super Cobra (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Strategy X + 1981 + Konami + + + + + + + + + + + + + + + + + + + Strategy X (Stern) + 1981 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + Armored Car (set 1) + 1981 + Stern + + + + + + + + + + + + + + + + + Armored Car (set 2) + 1981 + Stern + + + + + + + + + + + + + + + + + Moonwar + 1981 + Stern + + + + + + + + + + + + + + + + Moonwar (older) + 1981 + Stern + + + + + + + + + + + + + + + + Speed Coin (prototype) + 1984 + Stern + + + + + + + + + + + + + + Dark Planet + 1982 + Stern + + + + + + + + + + + + + + + + + + + Tazz-Mania (set 1) + 1982 + Stern + + + + + + + + + + + + + + + + + Tazz-Mania (set 2) + 1982 + Stern + + + + + + + + + + + + + + + + + Calipso + 1982 + [Stern] (Tago license) + + + + + + + + + + + + + + + + + + Anteater + 1982 + [Stern] (Tago license) + + + + + + + + + + + + + + + + Rescue + 1982 + Stern + + + + + + + + + + + + + + + + + Minefield + 1983 + Stern + + + + + + + + + + + + + + + + + + Lost Tomb (easy) + 1982 + Stern + + + + + + + + + + + + + + + + + + + Lost Tomb (hard) + 1982 + Stern + + + + + + + + + + + + + + + + + + + Super Bond + bootleg + + + + + + + + + + + + + + + + + + + Video Hustler + 1981 + Konami + + + + + + + + + + + + + + The Billiards + 1981 + bootleg + + + + + + + + + + + + + + Video Hustler (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + Frogger + 1981 + Konami + + + + + + + + + + + + + + + Frogger (Sega set 1) + 1981 + [Konami] (Sega license) + + + + + + + + + + + + + + + Frogger (Sega set 2) + 1981 + [Konami] (Sega license) + + + + + + + + + + + + + + + + Frogger (Moon Cresta hardware) + 1981 + bootleg? + + + + + + + + + + + + + + + Amidar + 1981 + Konami + + + + + + + + + + + + + + + + Amidar (Stern) + 1982 + Konami (Stern license) + + + + + + + + + + + + + + + + + Amidar (Olympia) + 1982 + Konami (Olympia license) + + + + + + + + + + + + + + + + + Amigo + 1982 + bootleg + + + + + + + + + + + + + + + + Turtles + 1981 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + Turpin + 1981 + [Konami] (Sega license) + + + + + + + + + + + + + + + + + 600 + 1981 + Konami + + + + + + + + + + + + + + + + + Fly-Boy + 1982 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fly-Boy (bootleg) + 1982 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fast Freddie + 1982 + Atari + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jump Coaster + 1983 + Kaneko + + + + + + + + + + + + + + + Boggy '84 + 1983 + bootleg + + + + + + + + + + + + + + + Red Robin + 1986 + Elettronolo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crazy Climber (US) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Crazy Climber (Japan) + 1980 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Crazy Climber (bootleg set 1) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Crazy Climber (bootleg set 2) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Crazy Kong (set 1) + 1981 + Falcon + + + + + + + + + + + + + + + + + + + + + + + Crazy Kong (set 2) + 1981 + Falcon + + + + + + + + + + + + + + + + + + + + + + + Crazy Kong (Jeutel bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Crazy Kong (Orca bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + Crazy Kong (Alca bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + Monkey Donkey + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + River Patrol (bootleg) + bootleg + + + + + + + + + + + + + + + + + + + + Silver Land + Falcon + + + + + + + + + + + + + + + + + + + + + Yamato (US) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Yamato (World?) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + Swimmer (set 1) + 1982 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + Swimmer (set 2) + 1982 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + Swimmer (set 3) + 1982 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + Guzzler + 1983 + Tehkan + + + + + + + + + + + + + + + + + + + + + + Cannon Ball (Crazy Climber hardware) + 1985 + Soft + + + + + + + + + + + + + + + + + + + + + + + Gomoku Narabe Renju + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + + Wiping + 1982 + Nichibutsu + + + + + + + + + + + + + + + + + + + Rug Rats + 1983 + Nichibutsu + + + + + + + + + + + + + + + + + + + Frisky Tom (set 1) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Frisky Tom (set 2) + 1981 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Radical Radial + 1982 + Nichibutsu USA + + + + + + + + + + + + + + + + + + + + + Seicross + 1984 + Nichibutsu + Alice + + + + + + + + + + + + + + + + + + + + + Sector Zone + 1984 + Nichibutsu + Alice + + + + + + + + + + + + + + + + + + + + + Fire Battle + 1984 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clash-Road + 1986 + Woodplace Inc. + + + + + + + + + + + + + + + + + + + + + + + + Tube Panic + 1984 + Nichibutsu + Fujitek + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Roller Jammer + 1984 + Nichibutsu + Alice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mag Max + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cop 01 (set 1) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cop 01 (set 2) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mighty Guy + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM3526 set 1) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM3526 set 2) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Terra Cresta (YM2203) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Soldier Girl Amazon + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sei Senshi Amatelass + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kid no Hore Hore Daisakusen + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kid no Hore Hore Daisakusen (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galivan - Cosmo Police (12/16/1985) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Galivan - Cosmo Police (12/11/1985) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Dangar - Ufo Robo (12/1/1986) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Dangar - Ufo Robo (9/26/1986) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Dangar - Ufo Robo (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Emaki (US) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Youma Ninpou Chou (Japan) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legion (ver 2.03) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Legion (ver 1.05) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Terra Force + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Terra Force (US) + 1987 + Nichibutsu USA + + + + + + + + + + + + + + + + + + + + + + + + Kodure Ookami (Japan) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + Armed Formation + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Crazy Climber 2 (Japan) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + Taisen Quiz HYHOO (Japan) + 1987 + Nichibutsu + + + + + + + + + + + + + Taisen Quiz HYHOO 2 (Japan) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Pastel Gal (Japan 851224) + 1985 + Nichibutsu + + + + + + + + + + + + + + + + + + + Crystal Gal (Japan 860512) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Crystal Gal 2 (Japan 860620) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + City Love (Japan 860908) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Apparel Night (Japan 860929) + 1986 + Central Denshi + + + + + + + + + + + + + + + + + + + Second Love (Japan 861201) + 1986 + Nichibutsu + + + + + + + + + + + + + + + + House Mannequin (Japan 870217) + 1987 + Nichibutsu + + + + + + + + + + + + + + House Mannequin Roppongi Live hen (Japan 870418) + 1987 + Nichibutsu + + + + + + + + + + + + + + Seiha (Japan 870725) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + Seiha [BET] (Japan 870723) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Bijokko Yume Monogatari (Japan 870925) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + Iemoto (Japan 871020) + 1987 + Nichibutsu + + + + + + + + + + + + + + + Ojousan (Japan 871204) + 1987 + Nichibutsu + + + + + + + + + + + + + + + + + Bijokko Gakuen (Japan 880116) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Orange Club - Maruhi Kagai Jugyou (Japan 880213) + 1988 + Daiichi Denshi + + + + + + + + + + + + + + + + + + + + + Vip Club [BET] (Japan 880310) + 1988 + Daiichi Denshi + + + + + + + + + + + + + + + + + + + + + Mahjong-zukino Korinai Menmen (Japan 880425) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + Mahjong Kaguyahime [BET] (Japan 880521) + 1988 + MIKI SYOUJI + + + + + + + + + + + + + + + + + Otona no Mahjong (Japan 880628) + 1988 + Apple + + + + + + + + + + + + + + + + + + + Kanatsuen no Onna [BET] (Japan 880905) + 1988 + Panac + + + + + + + + + + + + + + + + + + + Mahjong Shikaku (Japan 880908) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + Mahjong Shikaku (Japan 880722) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + Mahjong Camera Kozou (Japan 881109) + 1988 + MIKI SYOUJI + + + + + + + + + + + + + + + + + + + + + + + + + (Medal) Mahjong Camera Kozou [BET] (Japan 890509) + 1989 + MIKI SYOUJI + + + + + + + + + + + + + + + + + + + + + + + + + Idol no Himitsu [BET] (Japan 890304) + 1989 + Digital Soft + + + + + + + + + + + + + + + + + + + + Mahjong Satsujin Jiken (Japan 881017) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Hana no Momoko gumi (Japan 881201) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Telephone Mahjong (Japan 890111) + 1988 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + Gionbana (Japan 890120) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + Mahjong Focus (Japan 890313) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Focus [BET] (Japan 890510) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + Nozokimeguri Mahjong Peep Show (Japan 890404) + 1989 + AC + + + + + + + + + + + + + + + + + + + + + + + + + + Scandal Mahjong (Japan 890213) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Scandal Mahjong [BET] (Japan 890217) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + Mahjong G-MEN'89 (Japan 890425) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Nanpa Story (Japan 890713) + 1989 + BROOKS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Nanpa Story (Japan 890712) + 1989 + BROOKS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Nanpa Story (Ura) (Japan 890805) + 1989 + BROOKS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pairs (System Ten) (Japan 890826) + 1989 + System Ten + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Banana Dream [BET] (Japan 891124) + 1989 + DIGITAL SOFT + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong THE LADY HUNTER (Japan 900509) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Chinmoku no Hentai (Japan 900511) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Maikobana (Japan 900802) + 1990 + Nichibutsu + + + + + + + + + + + + + + + Mahjong CLUB 90's (set 1) (Japan 900919) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + Mahjong CLUB 90's (set 2) (Japan 900919) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + Hana to Ojisan [BET] (Japan 911209) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + Mahjong Panic Stadium (Japan) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Triple Wars (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Triple Wars 2 (Japan) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Nerae! Top Star (Japan) + 1990 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Jikken Love Story (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Vanilla Syndrome (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Final Bunny [BET] (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz-Mahjong Hayaku Yatteyo! (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Gal no Kokuhaku (Japan) + 1989 + Nichibutsu/T.R.TEC + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Hyouban Musume [BET] (Japan) + 1989 + Nichibutsu/T.R.TEC + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Gal no Kaika (Japan) + 1989 + Nichibutsu/T.R.TEC + + + + + + + + + + + + + + + + + + + Tokyo Gal Zukan (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokimeki Bishoujo [BET] (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Miss Mahjong Contest (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Uchuu yori Ai wo komete (Japan) + 1989 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + AV2Mahjong No.1 Bay Bridge no Seijo (Japan) + 1991 + MIKI SYOUJI/AV JAPAN + + + + + + + + + + + + + + + AV2Mahjong No.2 Rouge no Kaori (Japan) + 1991 + MIKI SYOUJI/AV JAPAN + + + + + + + + + + + + + + + + + + Mahjong Uranai Densetsu (Japan) + 1992 + Nichibutsu/Yubis + + + + + + + + + + + + + + + + Mahjong Koi no Magic Potion (Japan) + 1992 + Nichibutsu + + + + + + + + + + + + + + + + + + Mahjong Pachinko Monogatari (Japan) + 1992 + Nichibutsu + + + + + + + + + + + + + + + + + Medal Mahjong Janjan Baribari [BET] (Japan) + 1992 + Nichibutsu/Yubis/AV JAPAN + + + + + + + + + + + + + + + + + Ultra Maru-hi Mahjong (Japan) + 1993 + Apple + + + + + + + + + + + + + + Mahjong Gal 10-renpatsu (Japan) + 1993 + FUJIC + + + + + + + + + + + + + + + + + + Mahjong Ren-ai Club (Japan) + 1993 + FUJIC + + + + + + + + + + + + + + + Mahjong La Man (Japan) + 1993 + Nichibutsu/AV JAPAN + + + + + + + + + + + + + + Mahjong Keibaou (Japan) + 1993 + Nichibutsu + + + + + + + + + + + + + + + + + Medal Mahjong Pachi-Slot Tengoku [BET] (Japan) + 1993 + Nichibutsu/MIKI SYOUJI/AV JAPAN + + + + + + + + + + + + + + + + + Mahjong Sailor Wars (Japan) + 1993 + Nichibutsu + + + + + + + + + + + + + + + + + + Mahjong Sailor Wars-R [BET] (Japan) + 1993 + Nichibutsu + + + + + + + + + + + + + + + + + + Bishoujo Janshi Pretty Sailor 18-kin (Japan) + 1994 + SPHINX + + + + + + + + + + + + + + + + + + Bishoujo Janshi Pretty Sailor 2 (Japan) + 1994 + SPHINX + + + + + + + + + + + + + + + + + + Disco Mahjong Otachidai no Okite (Japan) + 1995 + SPHINX + + + + + + + + + + + + + + + + + + Nekketsu Grand-Prix Gal (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Gottsu ee-kanji (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Bakuhatsu Junjouden (Japan) + 1991 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Circuit no Mehyou (Japan) + 1992 + Nichibutsu/Kawakusu + + + + + + + + + + + + + + + + + + + + + + + + + + + Medal Mahjong Circuit no Mehyou [BET] (Japan) + 1992 + Nichibutsu/Kawakusu + + + + + + + + + + + + + + + + + Mahjong Koi Uranai (Japan) + 1992 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + Imekura Mahjong (Japan) + 1994 + SPHINX/AV JAPAN + + + + + + + + + + + + + + + + + + Mahjong Scout Man (Japan) + 1994 + SPHINX/AV JAPAN + + + + + + + + + + + + + + + + + + Mahjong Erotica Golf (Japan) + 1994 + FUJIC/AV JAPAN + + + + + + + + + + + + + + + + + + Niyanpai (Japan) + 1996 + Nichibutsu + + + + + + + + + + + + + + + + + + + Safari Rally (Japan) + 1979 + SNK + + + + + + + + + + + + + Phoenix (Amstar) + 1980 + Amstar + + + + + + + + + + + + + + + + + + + + Phoenix (Centuri) + 1980 + Amstar (Centuri license) + + + + + + + + + + + + + + + + + + + + Phoenix (Taito) + 1980 + Taito + + + + + + + + + + + + + + + + + + + + Phoenix (T.P.N.) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + Phoenix (IRECSA, G.G.I Corp) + 1981 + bootleg? + + + + + + + + + + + + + + + + + + + + Condor + 1981 + Sidam + + + + + + + + + + + + + + + + + + + + Falcon + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + Vautour (Jeutel France) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + + Pleiads (Tehkan) + 1981 + Tehkan + + + + + + + + + + + + + + + + + + + + Pleiads (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + Pleiads (Centuri) + 1981 + Tehkan (Centuri license) + + + + + + + + + + + + + + + + + + + + Naughty Boy + 1982 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Naughty Boy (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Naughty Boy (Cinematronics) + 1982 + Jaleco (Cinematronics license) + + + + + + + + + + + + + + + + + + + + + + + + Pop Flamer (protected) + 1982 + Jaleco + + + + + + + + + + + + + + + + Pop Flamer (not protected) + 1982 + Jaleco + + + + + + + + + + + + + + + + Pop Flamer (hack?) + 1982 + Jaleco + + + + + + + + + + + + + + + + Gee Bee + 1978 + Namco + + + + + + + Gee Bee (Gremlin) + 1978 + [Namco] (Gremlin license) + + + + + + + Bomb Bee + 1979 + Namco + + + + + + + Cutie Q + 1979 + Namco + + + + + + + Navalone + 1980 + Namco + + + + + + + + Kaitei Takara Sagashi + 1980 + K.K. Tokki + + + + + + + + + + + + Kaitei Takara Sagashi (Namco) + 1980 + Namco + + + + + + + + SOS + 1980 + Namco + + + + + + + + Tank Battalion + 1980 + Namco + + + + + + + + + + + + + + + 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) + + + + + + + + + + Rally X + 1980 + Namco + + + + + + + + + + + + + + + + + Rally X (Midway) + 1980 + [Namco] (Midway license) + + + + + + + + + + + + + + + + + New Rally X + 1981 + Namco + + + + + + + + + + + + + + + + + New Rally X (Vertical Screen) + 1981 + hack + + + + + + + + + + + + + + + + + Jungler + 1981 + Konami + + + + + + + + + + + + + + + + + + + Jungler (Stern) + 1981 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + Tactician (set 1) + 1982 + [Konami] (Sega license) + + + + + + + + + + + + + + + + + + + + + Tactician (set 2) + 1981 + [Konami] (Sega license) + + + + + + + + + + + + + + + + + + + + + Loco-Motion + 1982 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + Guttang Gottong + 1982 + Konami (Sega license) + + + + + + + + + + + + + + + + + + + + Cotocoto Cottong + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Commando (Sega) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + Bosconian (new version) + 1981 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bosconian (old version) + 1981 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bosconian (older version) + 1981 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bosconian (Midway, new version) + 1981 + [Namco] (Midway license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bosconian (Midway, old version) + 1981 + [Namco] (Midway license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga (Namco) + 1981 + Namco + + + + + + + + + + + + + + + + + + + + + + + + Galaga (Midway) + 1981 + [Namco] (Midway license) + + + + + + + + + + + + + + + + + + + + + + + + Galaga (fast shoot) + 1981 + hack + + + + + + + + + + + + + + + + + + + + + + + + Gallag + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Galaga (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Galaga '84 + 1984 + hack + + + + + + + + + + + + + + + + + + + + + + + + + Nebulous Bee + 1984 + hack + + + + + + + + + + + + + + + + + + + + + + + + Gatsbee + 1984 + Uchida + + + + + + + + + + + + + + + + + + + + + + + + + Dig Dug (set 1) + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Dig Dug (set 2) + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Dig Dug (Atari) + 1982 + [Namco] (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + Zig Zag (Dig Dug hardware) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Xevious (Namco) + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xevious (Atari set 1) + 1982 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xevious (Atari set 2) + 1982 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xevios + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battles + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Xevious + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Pac-Man + 1982 + Namco + + + + + + + + + + + + + + + Super Pac-Man (Midway) + 1982 + [Namco] (Bally Midway license) + + + + + + + + + + + + + + + Pac & Pal + 1983 + Namco + + + + + + + + + + + + + + + + Pac & Pal (older) + 1983 + Namco + + + + + + + + + + + + + + + + Pac-Man & Chomp Chomp + 1983 + Namco + + + + + + + + + + + + + + + + Phozon (Japan) + 1983 + Namco + + + + + + + + + + + + + + + + + + + + + + + Mappy (US) + 1983 + Namco + + + + + + + + + + + + + + + + + Mappy (Japan) + 1983 + Namco + + + + + + + + + + + + + + + + + Dig Dug II (New Ver.) + 1985 + Namco + + + + + + + + + + + + + + + + Dig Dug II (Old Ver.) + 1985 + Namco + + + + + + + + + + + + + + + + Tower of Druaga (New Ver.) + 1984 + Namco + + + + + + + + + + + + + + + + Tower of Druaga (Old Ver.) + 1984 + Namco + + + + + + + + + + + + + + + + Motos + 1985 + Namco + + + + + + + + + + + + + + + + Grobda (New version) + 1984 + Namco + + + + + + + + + + + + + + + + + + Grobda (Old version set 1) + 1984 + Namco + + + + + + + + + + + + + + + + + + Grobda (Old version set 2) + 1984 + Namco + + + + + + + + + + + + + + + + + + Gaplus (rev. D) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (alternate hardware) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gaplus (rev. B) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (rev. C) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (Midway) + 1984 + [Namco] (Midway license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga 3 (alternate set) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Libble Rabble + 1983 + Namco + + + + + + + + + + + + + + + + + + + + Toypop + 1986 + Namco + + + + + + + + + + + + + + + + + + + + Pole Position + 1982 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position (Atari version 2) + 1982 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position (Atari version 1) + 1982 + [Namco] (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Racer + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position II + 1983 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position II (Atari) + 1983 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position II (Atari bootleg 1) + 1983 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pole Position II (Atari bootleg 2) + 1983 + Namco (Atari license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pac-Land (set 1) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Pac-Land (set 2) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Pac-Land (set 3) + 1984 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Pac-Land (Midway) + 1984 + [Namco] (Bally Midway license) + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Buster + 1984 + Namco + + + + + + + + + + + + + + + + + + + + Sky Kid (New Ver.) + 1985 + Namco + + + + + + + + + + + + + + + + + + + + Sky Kid (Old Ver.) + 1985 + Namco + + + + + + + + + + + + + + + + + + + + Sky Kid (60A1 Ver.) + 1985 + Namco + + + + + + + + + + + + + + + + + + + + Baraduke (set 1) + 1985 + Namco + + + + + + + + + + + + + + + + + + + + + Baraduke (set 2) + 1985 + Namco + + + + + + + + + + + + + + + + + + + + + Metro-Cross (set 1) + 1985 + Namco + + + + + + + + + + + + + + + + + + Metro-Cross (set 2) + 1985 + Namco + + + + + + + + + + + + + + + + + + Hopping Mappy + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + Sky Kid Deluxe (set 1) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Kid Deluxe (set 2) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + The Return of Ishtar + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Genpei ToumaDen + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (new version) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder (old version) + 1986 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Momo + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Land + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Yokai Douchuuki (Japan new version) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Yokai Douchuuki (Japan old version) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Spirit (new version) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Spirit (old version) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blazer (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quester (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + Pac-Mania + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + Pac-Mania (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + Galaga '88 (set 1) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga '88 (set 2) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaga '88 (Japan) + 1987 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Stadium (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Beraboh Man (Japan version C) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Beraboh Man (Japan version B) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marchen Maze (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bakutotsu Kijuutei + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Court (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + Splatter House (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Face Off (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Rompers (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rompers (Japan old version) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blast Off (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Stadium '89 (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dangerous Seed (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + World Stadium '90 (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pistol Daimyo no Bouken (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Boxy Boy (US) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + Souko Ban Deluxe (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + Puzzle Club (Japan prototype) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + Tank Force (US) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Tank Force (Japan) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Assault + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Assault (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Assault Plus (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Hawk (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ordyne (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mirai Ninja (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Phelios (Japan) + 1988 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dirt Fox (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Valkyrie No Densetsu (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Finest Hour (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Force (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Land (US) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Land (Japan) + 1989 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyuukai Douchuuki (Japan new version) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyuukai Douchuuki (Japan old version) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Saber + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Saber (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Golly! Ghost! + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder 2 + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rolling Thunder 2 (Japan) + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner + 1990 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner 2 (US) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Gunner 2 (Japan) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cosmo Gang the Video (US) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cosmo Gang the Video (Japan) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lucky & Wild + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '92 (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '92 Gekitouban (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super World Stadium '93 (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bakuretsu Quiz Ma-Q Dai Bouken (Japan) + 1992 + Namco + + + + + + + + + + + + + Cosmo Gang the Puzzle (US) + 1992 + Namco + + + + + + + Cosmo Gang the Puzzle (Japan) + 1992 + Namco + + + + + + + Exvania (Japan) + 1992 + Namco + + + + + + + + + + + Fighter & Attacker (US) + 1992 + Namco + + + + + + + + + + + + + F/A (Japan) + 1992 + Namco + + + + + + + + + + + + + Knuckle Heads (World) + 1992 + Namco + + + + + + + + + + + + + + + + + Knuckle Heads (Japan) + 1992 + Namco + + + + + + + + + + + + + + + + + Super World Court (Japan) + 1992 + Namco + + + + + + + + + + + + + Emeraldia (Japan Version B) + 1993 + Namco + + + + + + + + + Emeraldia (Japan) + 1993 + Namco + + + + + + + + + Numan Athletics (World) + 1993 + Namco + + + + + + + + + + + + + + + + + Numan Athletics (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + + Nettou! Gekitou! Quiztou!! (Japan) + 1993 + Namco + + + + + + + + + + + + + + + + + Tinkle Pit (Japan) + 1993 + Namco + + + + + + + + + + + + + + + Nebulas Ray (World) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + Nebulas Ray (Japan) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + Point Blank + 1994 + Namco + + + + + + + + + + + + + + + + + Gun Bullet (Japan) + 1994 + Namco + + + + + + + + + + + + + + + + + Great Sluggers '94 + 1994 + Namco + + + + + + + + + + + + + + + Super World Stadium '95 (Japan) + 1995 + Namco + + + + + + + + + + + + + + + Super World Stadium '96 (Japan) + 1996 + Namco + + + + + + + + + + + + + + + Super World Stadium '97 (Japan) + 1997 + Namco + + + + + + + + + + + + + + + J-League Soccer V-Shoot + 1994 + Namco + + + + + + + + + + + + + + + + + Outfoxies + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Outfoxies (Japan) + 1994 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + Mach Breakers (Japan) + 1995 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + Namco Classics Collection Vol.1 + 1995 + Namco + + + + + + + + + Namco Classics Collection Vol.1 (Japan set 1) + 1995 + Namco + + + + + + + + + Namco Classics Collection Vol.1 (Japan set 2) + 1995 + Namco + + + + + + + + + Solvalou (Japan) + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Starblade + 1991 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Prop Cycle + 1996 + Namco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cosmic Guerilla + 1979 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cosmic Alien + 1979 + Universal + + + + + + + + + + + + + + Cosmic Alien (older) + 1979 + Universal + + + + + + + + + + + + + + + + Space Panic (version E) + 1980 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Panic (set 2) + 1980 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Panic (set 3) + 1980 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Panic (harder) + 1980 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Panic (German) + 1980 + Universal (ADP Automaten license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zero Hour + Universal + + + + + + + + + + + + + + + + Red Clash + 1981 + Tehkan + + + + + + + + + + + + + Red Clash (Kaneko) + 1981 + Kaneko + + + + + + + + + + + + + + + + Magical Spot II + 1980 + Universal + + + + + + + + + + + + + + + Devil Zone + 1980 + Universal + + + + + + + + + + + + + + + + + Devil Zone (easier) + 1980 + Universal + + + + + + + + + + + + + + + + + No Man's Land + 1980 + Universal + + + + + + + + + + + + + + + + + No Man's Land (Gottlieb) + 1980 + Universal (Gottlieb license) + + + + + + + + + + + + + + + + + Cheeky Mouse + Universal + + + + + + + + + + + + + + + + Lady Bug + 1981 + Universal + + + + + + + + + + + + + + + + + + + Lady Bug (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + + Snap Jack + Universal + + + + + + + + + + + + + + + + + + + Cosmic Avenger + 1981 + Universal + + + + + + + + + + + + + + + + + + Dorodon (set 1) + Falcon + + + + + + + + + + + + + + + + + + Dorodon (set 2) + Falcon + + + + + + + + + + + + + + + + + + Mr. Do! + 1982 + Universal + + + + + + + + + + + + + + + + + + + + Mr. Do! (prototype) + 1982 + Universal + + + + + + + + + + + + + + + + + + + + Mr. Do! (Taito) + 1982 + Universal (Taito license) + + + + + + + + + + + + + + + + + + + + Mr. Do! (bugfixed) + 1982 + Universal (Taito license) + + + + + + + + + + + + + + + + + + + + Mr. Lo! + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Mr. Du! + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Yankee DO! + 1982 + hack + + + + + + + + + + + + + + + + + + + + Mr. Do's Castle (set 1) + 1983 + Universal + + + + + + + + + + + + + + + + + + + + + + Mr. Do's Castle (set 2) + 1983 + Universal + + + + + + + + + + + + + + + + + + + + + + Mr. Do's Castle (older) + 1983 + Universal + + + + + + + + + + + + + + + + + + + + + + Mr. Do vs. Unicorns + 1983 + Universal + + + + + + + + + + + + + + + + + + + + + + Do! Run Run (set 1) + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Do! Run Run (set 2) + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Do! Run Run (Do's Castle hardware) + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Super Pierrot (Japan) + 1987 + Universal + + + + + + + + + + + + + + + + + + + + + + Mr. Do's Wild Ride + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Jumping Jack + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Kick Rider + 1984 + Universal + + + + + + + + + + + + + + + + + + + + + + Indoor Soccer + 1985 + Universal + + + + + + + + + + + + + + + + + + + + + + + + + Radar Scope + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (US set 1) + 1981 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (US set 2) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 1) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 2) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong (Japan set 3) (bad dump?) + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Junior (US) + 1982 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Jr. (Japan) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Junior (Japan?) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Jr. (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong Junior (bootleg?) + 1982 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong 3 (US) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + Donkey Kong 3 (Japan) + 1983 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + Mario Bros. (US) + 1983 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + + + + + + Mario Bros. (Japan) + 1983 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + Masao + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + Hunchback (DK conversion) + 1983 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Herbie at the Olympics (DK conversion) + 1984 + CVS + + + + + + + + + + + + + + + + + + + + + Hero in the Castle of Doom (DK conversion) + 1984 + Seatongrove Ltd (Crown license) + + + + + + + + + + + + + + + + + + Hero in the Castle of Doom (DK conversion not encrypted) + 1984 + Seatongrove Ltd (Crown license) + + + + + + + + + + + + + + + + + + Sky Skipper + 1981 + Nintendo + + + + + + + + + + + + + + + + + + + + + + Popeye (revision D) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + Popeye (revision D not protected) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + Popeye (revision F) + 1982 + Nintendo + + + + + + + + + + + + + + + + + + + Popeye (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + + + Punch-Out!! + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Punch-Out!! + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Punch-Out!! (Japan) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Arm Wrestling + 1985 + Nintendo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PlayChoice-10: Tennis + 1983 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Mario Bros. + 1983 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Baseball + 1984 + Nintendo of America + + + + + + + + + + + + + + + + + + PlayChoice-10: Balloon Fight + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Excite Bike + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Golf + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Kung Fu + 1984 + Irem (Nintendo license) + + + + + + + + + + + + + + + + + + PlayChoice-10: 1942 + 1985 + Capcom + + + + + + + + + + + + + + + + + + PlayChoice-10: Super Mario Bros. + 1985 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Volley ball + 1986 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Duck Hunt + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Hogan's Alley + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Wild Gunman + 1984 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Gradius + 1986 + Konami + + + + + + + + + + + + + + + + + + PlayChoice-10: Gradius (Early version) + 1986 + Konami + + + + + + + + + + + + + + + + + + PlayChoice-10: Track & Field + 1987 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Pro Wrestling + 1986 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Trojan + 1986 + Capcom USA (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Castlevania + 1987 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Double Dribble + 1987 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Rush N' Attack + 1987 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Rygar + 1987 + Tecmo (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Contra + 1988 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: The Goonies + 1986 + Konami + + + + + + + + + + + + + + + + + + PlayChoice-10: Metroid + 1986 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Rad Racer + 1987 + Square + + + + + + + + + + + + + + + + + + PlayChoice-10: Mike Tyson's Punchout + 1987 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: RC Pro Am + 1987 + Rare + + + + + + + + + + + + + + + + + + PlayChoice-10: Ninja Gaiden + 1989 + Tecmo (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Teenage Mutant Ninja Turtles + 1989 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Uncle Fester's Quest - The Addams Family + 1989 + Sunsoft (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Baseball Stars + 1989 + SNK (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Tecmo Bowl + 1989 + Tecmo (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Dr. Mario + 1990 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Yo! Noid + 1990 + Capcom USA (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Rescue Rangers + Capcom USA (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Double Dragon + Technos? + + + + + + + + + + + + + + + + + + PlayChoice-10: Gauntlet + 1985 + Atari/Tengen (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Super Mario Bros. 2 + 1988 + Nintendo + + + + + + + + + + + + + + + + + + PlayChoice-10: Super Mario Bros. 3 + 1988 + Nintendo + + + + + + + + + + + + + + + + + + + PlayChoice-10: Mega Man 3 + 1990 + Capcom USA (Nintendo of America license) + + + + + + + + + + + + + + + + + + + PlayChoice-10: Rad Racer II + 1990 + Square (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Super C + 1990 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Teenage mutant Ninja Turtles 2 + 1990 + Konami (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Nintendo World Cup + 1990 + Technos (Nintendo license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Ninja Gaiden 2 + 1990 + Tecmo (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Ninja Gaiden 3 + 1991 + Tecmo (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Power Blade + 1991 + Taito (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Rockin' Kats + 1991 + Atlus (Nintendo of America license) + + + + + + + + + + + + + + + + + + PlayChoice-10: Captain Sky Hawk + 1989 + Rare (Nintendo of America license) + + + + + + + + + + + + + + + + + PlayChoice-10: Solar Jetman + 1990 + Rare + + + + + + + + + + + + + + + + + PlayChoice-10: Mario's Open Golf + 1991 + Nintendo + + + + + + + + + + + + + + + + + Vs. Battle City + 1985 + Namco + + + + + + + + + + + + Vs. Star Luster + 1985 + Namco + + + + + + + + + + + + Vs. Castlevania + 1987 + Konami + + + + + + + Vs. Clu Clu Land + 1984 + Nintendo + + + + + + + + + + + + Vs. Dr. Mario + 1990 + Nintendo + + + + + + + + Vs. Duck Hunt + 1985 + Nintendo + + + + + + + + + + + + Vs. Excitebike + 1984 + Nintendo + + + + + + + + + + + + Vs. Excitebike (Japan) + 1984 + Nintendo + + + + + + + + + + + + Vs. The Goonies + 1986 + Konami + + + + + + + + Vs. Hogan's Alley + 1985 + Nintendo + + + + + + + + + + + + Vs. Ice Climber + 1984 + Nintendo + + + + + + + + + + + + Vs. Ice Climber (Japan) + 1984 + Nintendo + + + + + + + + + + + + Vs. Stroke and Match Golf (Ladies Version) + 1984 + Nintendo + + + + + + + + + + + + Vs. Mach Rider (Endurance Course Version) + 1985 + Nintendo + + + + + + + + + + + + Vs. Mach Rider (Japan, Fighting Course Version) + 1985 + Nintendo + + + + + + + + + + + + Vs. Atari R.B.I. Baseball + 1986 + Namco + + + + + + + + Vs. Super Mario Bros. + 1986 + Nintendo + + + + + + + + + + + + Vs. Super SkyKid + 1985 + Namco + + + + + + + + Vs. TKO Boxing + 1987 + Namco LTD. + + + + + + + + Vs. Stroke and Match Golf (Men Version) + 1984 + Nintendo + + + + + + + + + + + + Vs. Stroke and Match Golf (Men Version) (Japan) + 1984 + Nintendo + + + + + + + + + + + + Vs. Pinball + 1984 + Nintendo + + + + + + + + + + + + Vs. Pinball (Japan) + 1984 + Nintendo + + + + + + + + + + + + Vs. Slalom + 1986 + Rare LTD. + + + + + + + + + + + Vs. Soccer + 1985 + Nintendo + + + + + + + + + + + + Vs. Gradius + 1986 + Konami + + + + + + + + Vs. Platoon + 1987 + Ocean Software Limited + + + + + + + + Vs. Tetris + 1987 + Academysoft-Elory + + + + + + + + + + Vs. Mighty Bomb Jack (Japan) + 1986 + Tecmo + + + + + + + + + + + Vs. Ninja Jajamaru Kun (Japan) + 1985 + Jaleco + + + + + + + + + + + + Vs. Top Gun + 1987 + Konami + + + + + + + Vs. Raid on Bungeling Bay (Japan) + 1985 + Nintendo / Broderbund Software Inc. + + + + + + + + + + + + + Vs. Tennis + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + Vs. Wrecking Crew + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + Vs. Balloon Fight + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + Vs. Mahjang (Japan) + 1984 + Nintendo + + + + + + + + + + + + + + + + + Vs. BaseBall + 1984 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + Vs. BaseBall (Japan set 1) + 1984 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + Vs. BaseBall (Japan set 2) + 1984 + Nintendo of America + + + + + + + + + + + + + + + + + + + + + Vs. Ice Climber Dual (Japan) + 1984 + Nintendo + + + + + + + + + + + + + + + + + + + + + Vs. Gumshoe + 1986 + Nintendo + + + + + + + + + + + + Sea Wolf + 1976 + Midway + + + + + + + + + + + + + + Gun Fight + 1975 + Midway + + + + + + + + Tornado Baseball + 1976 + Midway + + + + + + + Datsun 280 Zzzap + 1976 + Midway + + + + + + + + + + Amazing Maze + 1976 + Midway + + + + + + Boot Hill + 1977 + Midway + + + + + + + + + + + + + Checkmate + 1977 + Midway + + + + + + + + Desert Gun + 1977 + Midway + + + + + + + + Double Play + 1977 + Midway + + + + + + + + Laguna Racer + 1977 + Midway + + + + + + + + Guided Missile + 1977 + Midway + + + + + + + + M-4 + 1977 + Midway + + + + + + + + Clowns (rev. 2) + 1978 + Midway + + + + + + + + + + + + + + Clowns (rev. 1) + 1978 + Midway + + + + + + + + + + + + + + Extra Inning + 1978 + Midway + + + + + + + + + Shuffleboard + 1978 + Midway + + + + + + + + Dog Patch + 1977 + Midway + + + + + + + + + + + + Space Encounters + 1980 + Midway + + + + + + + + + + + + Phantom II + 1979 + Midway + + + + + + + + + 4 Player Bowling Alley + 1978 + Midway + + + + + + + + + Space Invaders + 1978 + Midway + + + + + + + + + + + + + + + + + + + Blue Shark + 1978 + Midway + + + + + + + Space Invaders II (Midway, cocktail) + 1980 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Invaders Part II (Taito) + 1979 + Taito + + + + + + + + + + + + + + + + + + + + + + Space Invaders Deluxe + 1980 + Midway + + + + + + + + + + + + + + + + + + + + Moon Base + 1978 + Nichibutsu + + + + + + + + + + + + + + + + + + + + + + + Super Earth Invasion + 1980 + bootleg + + + + + + + + + + + + + + + + + + + Space Attack + 1978 + Video Games GMBH + + + + + + + + + + + + + + + + + + + + + Space Attack II + 1980 + Zenitone-Microsec Ltd + + + + + + + + + + + + + + + + + + + Super Invaders (Zenitone-Microsec) + Zenitone-Microsec Ltd + + + + + + + + + + + + + + + + + + + + + + + Super Invaders + bootleg + + + + + + + + + + + + + + + + + + + + + Space Stranger + 1978 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + + + + + + + + + + + + Space Stranger 2 + 1979 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + + + + + + + Super Invaders (EMAG) + bootleg + + + + + + + + + + + + + + + + + + + + + Jatre Specter (set 1) + 1979 + Jatre + + + + + + + + + + + + + + + + + Jatre Specter (set 2) + 1979 + Jatre + + + + + + + + + + + + + + + + + Invader's Revenge + Zenitone Microsec + + + + + + + + Invader's Revenge (Dutchford) + Zenitone Microsec (Dutchford license) + + + + + + + + Galaxy Wars (Universal set 1) + 1979 + Universal + + + + + + + + + + + + + + + + + + + + + Galaxy Wars (Universal set 2) + 1979 + Universal + + + + + + + + + + + + + + + + + Galaxy Wars (Taito?) + 1979 + Taito? + + + + + + + + + + + + + + + + + + + + + Star Wars + 1979 + bootleg + + + + + + + + + + + + + + + + + + + + + Lunar Rescue + 1979 + Taito + + + + + + + + + + + + + + + + + + + + + + Galaxy Rescue + 1979 + Taito (Universal license?) + + + + + + + + + + + + + + + + + + + + + + Destination Earth + 1979 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Cosmic Monsters + 1979 + Universal + + + + + + + + + + + + + + + + + + + + + + Rolling Crash / Moon Base + 1979 + Nichibutsu + + + + + + + + + + + + + + + + Sheriff + 1979 + Nintendo + + + + + + + + + + + + + + + + + + + Bandido + 1980 + Exidy + + + + + + + + + + + + + + + + + + Ozma Wars (set 1) + 1979 + SNK + + + + + + + + + + + + + + + + + + + + + Ozma Wars (set 2) + 1979 + SNK + + + + + + + + + + + + + + + + + + + + + + + + Solar Fight + 1979 + bootleg + + + + + + + + + + + + + + + + + + + + + Space Phantoms + 1979 + Zilec Games + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Chaser + 1979 + Taito + + + + + + + + + + + + + + + + + + Space Chaser (CV version) + 1979 + Taito + + + + + + + + + + + + + + + + Lupin III + 1980 + Taito + + + + + + + + + + + HeliFire (revision B) + 1980 + Nintendo + + + + + + + + + + + + + + + + HeliFire (revision A) + 1980 + Nintendo + + + + + + + + + + + + + + + + Space Fever (color) + 1979 + Nintendo + + + + + + + + + + + + + + + + Space Fever (black and white) + 1979 + Nintendo + + + + + + + + + + + + + + + + Space Laser + 1980 + Game Plan, Inc. (Taito) + + + + + + + + + + + + + + + + + + + Laser + 1980 + <unknown> + + + + + + + + + + + + + + + + + + + Space War (Leijac) + 1979 + Leijac (Konami) + + + + + + + + + + + + + + + + + + + Polaris (set 1) + 1980 + Taito + + + + + + + + + + + + + Polaris (set 2) + 1980 + Taito + + + + + + + + + + + + + + Balloon Bomber + 1980 + Taito + + + + + + + + + + + M79 Ambush + 1977 + Ramtek + + + + + + + + + + + + + + + + + + + + Alien Invasion Part II + bootleg + + + + + + + + + + + + + + + + + + + Space Invaders (TV Version) + 1978 + Taito + + + + + + + + + + + + + + + + + + + Space Invaders (CV Version) + 1979 + Taito + + + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version) + 1978 + Taito + + + + + + + + + + + + + + + + + + + + + + Space Invaders (SV Version 2) + 1978 + Taito + + + + + + + + + + + + + + + + + + + + + + + Space War Part 3 + 1978 + bootleg + + + + + + + + + + + + + + + + + + + + Space Invaders (Logitec) + 1978 + bootleg + + + + + + + + + + + + + + + + + + + + + + Yosaku To Donbee (bootleg) + 1979 + bootleg + + + + + + + + + + + Space King + 1978 + Leijac (Konami) + + + + + + + + + + + + + + + + + + + Space War (Sanritsu) + 1978 + Sanritsu + + + + + + + + + + + + + + + + + + + + + + + Straight Flush + 1979 + Taito + + + + + + + + + Lazer Command + 1976 + Meadows Games, Inc. + + + + + + + + + + + + Bigfoot Bonkers + 1976 + Meadows Games, Inc. + + + + + + + + + + Dead Eye + 1978 + Meadows + + + + + + + + + + + + + + + + + Gypsy Juggler + 1978 + Meadows + + + + + + + + + + + + + + + + + Inferno (S2650) + 1978 + Meadows + + + + + + + + + + + Meadows Lanes + 1977 + Meadows Games, Inc. + + + + + + + + + + + + + + + + Cosmos + 1981 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Dark Warrior + 1981 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Space Fortress + 1981 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Video Eight Ball + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Video Eight Ball (Rev.1) + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Logger + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Dazzler + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Wall Street + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Radar Zone + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Radar Zone (Rev.1) + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Radar Zone (Tuni) + 1982 + Century Electronics (Tuni Electro Service Inc) + + + + + + + + + + + + + + + + + + + + + Outline + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Gold Bug + 1982 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Heart Attack + 1983 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Hunchback + 1983 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Superbike + 1983 + Century Electronics + + + + + + + + + + + + + + + + + + + + + Hero + 1983 + Seatongrove Ltd + + + + + + + + + + + + + + + + + + + + + Hunchback Olympic + 1984 + Seatongrove Ltd + + + + + + + + + + + + + + + + + + + + + Sea Wolf II + 1978 + Midway + + + + + + + + Space Zap + 1980 + Midway + + + + + + + + + + Extra Bases + 1980 + Midway + + + + + + + + + Wizard of Wor + 1980 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gorf + 1981 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gorf (Program 1) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robby Roto + 1981 + Bally Midway + + + + + + + + + + + + + + + + Solar Fox + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + Kick (upright) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + + + + + Kick (cocktail) + 1981 + Midway + + + + + + + + + + + + + + + + + + + + + + + + Satan's Hollow (set 1) + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + Satan's Hollow (set 2) + 1981 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + Tron (set 1) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + Tron (set 2) + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + Kozmik Kroozr + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Domino Man + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Wacko + 1982 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Two Tigers + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Two Tigers (dedicated) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Journey + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + Tapper (Budweiser) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Tapper (alternate) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Tapper (Suntory) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Tapper (Root Beer) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Timber + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + Discs of Tron (Upright) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Discs of Tron (Upright alternate) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Discs of Tron (Environmental) + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Demolition Derby + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Demolition Derby (2-Player Mono Board Version) + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + Sarge + 1985 + Bally Midway + + + + + + + + + + + + + + + + Rampage (revision 3) + 1986 + Bally Midway + + + + + + + + + + + + + + + + + + Rampage (revision 2) + 1986 + Bally Midway + + + + + + + + + + + + + + + + + + Power Drive + 1986 + Bally Midway + + + + + + + + + + + + + + + + + + Star Guards + 1987 + Bally Midway + + + + + + + + + + + + + + + + Max RPM + 1986 + Bally Midway + + + + + + + + + + + + + + + + Spy Hunter + 1983 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo Tag (prototype) + 1985 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crater Raider + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zwackery + 1984 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xenophobe + 1987 + Bally Midway + + + + + + + + + + + + + + + + + + + + Spy Hunter 2 (rev 2) + 1987 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Spy Hunter 2 (rev 1) + 1987 + Bally Midway + + + + + + + + + + + + + + + + + + + + + + Blasted + 1988 + Bally Midway + + + + + + + + + + + + + + + + + + + + Arch Rivals (rev 4.0) + 1989 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Arch Rivals (rev 2.0) + 1989 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Tri-Sports + 1989 + Bally Midway + + + + + + + + + + + + + + + + + + + + + Pigskin 621AD + 1990 + Midway + + + + + + + + + + + + + + + + + + + + + Sente Diagnostic Cartridge + 1984 + Bally/Sente + + + + + + + + + + + + + + Chicken Shift + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + Goalie Ghost + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + Hat Trick + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + Off the Wall (Sente) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + Snake Pit + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + Snacks'n Jaxson + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + Stocker + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + Trivial Pursuit (Genus I) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + Trivial Pursuit (Genus II) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Trivial Pursuit (All Star Sports Edition) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Trivial Pursuit (Young Players Edition) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Trivial Pursuit (Baby Boomer Edition) + 1984 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Gimme A Break + 1985 + Bally/Sente + + + + + + + + + + + + + + + + + + Mini Golf (set 1) + 1985 + Bally/Sente + + + + + + + + + + + + + + + + + + + + Mini Golf (set 2) + 1985 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Toggle (prototype) + 1985 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + Name That Tune + 1986 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + Night Stocker + 1986 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + Street Football + 1986 + Bally/Sente + + + + + + + + + + + + + + + + + + + + Spiker + 1986 + Bally/Sente + + + + + + + + + + + + + + + + + + Stompin' + 1986 + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + Rescue Raider + 1987 + Bally/Midway + + + + + + + + + + + + + + + + + + Rescue Raider (Stand-Alone) + 1987 + Bally/Midway + + + + + + + + + + + + + + + + + + Grudge Match (prototype) + Bally/Midway + + + + + + + + + + + + + + + + + Shrike Avenger (prototype) + Bally/Sente + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gridlee + 1983 + Videa + + + + + + + + + + + + + + + + + + + + + IPM Invader + Irem + + + + + + + + + + + + + Sky Chuter + 1980 + Irem + + + + + + + + + + + + + + Space Beam + 1979 + Irem + + + + + + + + + + Green Beret (Irem) + 1980 + Irem + + + + + + + + + + + + + Red Alert + 1981 + Irem + GDI + + + + + + + + + + + + + + + + + + + Oli-Boo-Chu + 1981 + Irem + GDI + + + + + + + + + + + + + + + + + + + + + + + + + + + Moon Patrol + 1982 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Moon Patrol (Williams) + 1982 + Irem (Williams license) + + + + + + + + + + + + + + + + + + + + + + + + + Tropical Angel + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 Yard Fight (Japan) + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 Yard Fight (Vs. version World, 11/05/84) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 Yard Fight (Vs. version Japan, set 2) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Traverse USA / Zippy Race + 1983 + Irem + + + + + + + + + + + + + + + + + + + + + + + MotoRace USA + 1983 + Irem (Williams license) + + + + + + + + + + + + + + + + + + + + + + + Shot Rider + 1984 + Seibu Kaihatsu (Sigma license) + + + + + + + + + + + + + + + + + + + + + + + + Wily Tower + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Boy + 1985 + Irem (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (Data East) + 1984 + Irem (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spartan X (Japan) + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (bootleg set 1) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Master (bootleg set 2) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Battle-Road + 1984 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lode Runner (set 1) + 1984 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lode Runner (set 2) + 1984 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 IV - Teikoku Karano Dasshutsu + 1986 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lot Lot + 1985 + Irem (licensed from Tokuma Shoten) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kid Niki - Radical Ninja (US) + 1986 + Irem (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kaiketsu Yanchamaru (Japan) + 1986 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spelunker + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spelunker (Japan) + 1985 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spelunker II + 1986 + Irem (licensed from Broderbund) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Horizon + 1985 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Youjyuden (Japan) + 1986 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vigilante (World) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Vigilante (US) + 1988 + Irem (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + Vigilante (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Meikyu Jima (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + R-Type (Japan) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + R-Type (Japan prototype) + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + R-Type (US) + 1987 + Irem (Nintendo of America license) + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Chopper + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mr. HELI no Dai-Bouken + 1987 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Spirit + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saigo no Nindou (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + Image Fight (Japan) + 1988 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Legend of Hero Tonma + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + X Multiply (Japan) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragon Breed + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + R-Type II + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + R-Type II (Japan) + 1989 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Major Title (Japan) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + Hammerin' Harry (World) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Hammerin' Harry (US) + 1990 + Irem America + + + + + + + + + + + + + + + + + + + + + Daiku no Gensan (Japan) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Daiku no Gensan (Japan, M72) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Pound for Pound (World) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + Pound for Pound (US) + 1990 + Irem America + + + + + + + + + + + + + + + + + + + + + Air Duel (Japan) + 1990 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Cosmic Cop (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + + Gallop - Armed police Unit (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + + + Ken-Go + 1991 + Irem + + + + + + + + + + + + + + + + + + + Sichuan II (hack?) (set 1) + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sichuan II (hack?) (set 2) + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shisensho - Joshiryo-Hen (Japan) + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Match It + 1989 + Tamtex + + + + + + + + + + + + + + + + + + + + + + + + + + Hasamu (Japan) + 1991 + Irem + + + + + + + + + + + + + + Bomberman (Japan) + 1992 + Irem (licensed from Hudson Soft) + + + + + + + + + + + + + + + Bomber Man World (World) + 1991 + Irem + + + + + + + + + + + + + + + Bomber Man World (Japan) + 1991 + Irem + + + + + + + + + + + + + + + New Atomic Punk - Global Quest (US) + 1992 + Irem America + + + + + + + + + + + + + + + Quiz F-1 1,2finish + 1992 + Irem + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (US) + 1991 + Irem America + + + + + + + + + + + + + + + + + + + + + + Gunforce - Battle Fire Engulfed Terror Island (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + Blade Master (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + Lethal Thunder (World) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + Thunder Blaster (Japan) + 1991 + Irem + + + + + + + + + + + + + + + + + + + + + + Undercover Cops (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + Undercover Cops (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + Mystic Riders (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + Gun Hohki (Japan) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + Major Title 2 (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + + The Irem Skins Game (US set 1) + 1992 + Irem America + + + + + + + + + + + + + + + + + + + + + + + The Irem Skins Game (US set 2) + 1992 + Irem America + + + + + + + + + + + + + + + + + + + + + + + Hook (World) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + Hook (US) + 1992 + Irem America + + + + + + + + + + + + + + + + + + + + + + R-Type Leo (World rev. C) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + R-Type Leo (Japan rev. D) + 1992 + Irem + + + + + + + + + + + + + + + + + + + + + + In The Hunt (World) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + In The Hunt (US) + 1993 + Irem America + + + + + + + + + + + + + + + + + + + + + + Kaitei Daisensou (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + Ninja Baseball Batman (US) + 1993 + Irem America + + + + + + + + + + + + + + + + + + + + + + Yakyuu Kakutou League-Man (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + Perfect Soldiers (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + Dream Soccer '94 (Japan) + 1994 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + Gunforce 2 (US) + 1994 + Irem + + + + + + + + + + + + + + + + + + + + + + Geostorm (Japan) + 1994 + Irem + + + + + + + + + + + + + + + + + + + + + + Fire Barrel (Japan) + 1993 + Irem + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dream Soccer '94 + 1994 + Irem (Data East Corporation license) + + + + + + + + + + + + + + + + + + + + + + Reactor + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mad Planets + 1983 + Gottlieb + + + + + + + + + + + + + + + + + + + Q*bert (US) + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Q*bert (Japan) + 1982 + Gottlieb (Konami license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mello Yello Q*bert + 1982 + Gottlieb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Insector (prototype) + 1982 + Gottlieb + + + + + + + + + + + + + + + + + Krull + 1983 + Gottlieb + + + + + + + + + + + + + + + + + + + Faster, Harder, More Challenging Q*bert (prototype) + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + M.A.C.H. 3 + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + + Us vs. Them + Mylstar + + + + + + + + + + + + + + + + + + + + + + + The Three Stooges In Brides Is Brides + 1984 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + Q*bert's Qubes + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Screw Loose (prototype) + 1983 + Mylstar + + + + + + + + + + + + + + + + + + + + + + + Curve Ball + 1984 + Mylstar + + + + + + + + + + + + + + + + + + Qix (set 1) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Qix (set 2) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Qix (set 3) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + Qix II (Tournament) + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + Space Dungeon + 1981 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + The Electric Yo-Yo (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + The Electric Yo-Yo (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Kram (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Kram (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + Kram (encrypted) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 1) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 2) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zoo Keeper (set 3) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Slither (set 1) + 1982 + Century II + + + + + + + + + + + + + + + + + + Slither (set 2) + 1982 + Century II + + + + + + + + + + + + + + + + + + Complex X + 1984 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + Space Seeker + 1981 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Space Cruiser + 1981 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jungle King (Japan) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jungle King (Japan, earlier) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jungle Hunt (US) + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jungle Hunt (Brazil) + 1983 + Taito do Brasil + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pirate Pete + 1982 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alpine Ski (set 1) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Alpine Ski (set 2) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Time Tunnel + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wild Western (set 1) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Wild Western (set 2) + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Front Line + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Elevator Action + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Elevator Action (bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Tin Star + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Water Ski + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Bio Attack + 1983 + Taito Corporation (Fox Video Games license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + High Way Race + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sea Fighter Poseidon + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Kick Start Wheelie King + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Crazy Balloon (set 1) + 1980 + Taito Corporation + + + + + + + + + + + + + Crazy Balloon (set 2) + 1980 + Taito Corporation + + + + + + + + + + + + + Grand Champion + 1981 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdie King + 1982 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdie King 2 + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdie King 3 + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chack'n Pop + 1983 + Taito Corporation + + + + + + + + + + + + + + + + + + Great Swordsman + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Legend of Kage + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + The Legend of Kage (bootleg set 1) + 1984 + bootleg + + + + + + + + + + + + + + + + + The Legend of Kage (bootleg set 2) + 1984 + bootleg + + + + + + + + + + + + + + + + The Legend of Kage (bootleg set 3) + 1984 + bootleg + + + + + + + + + + + + + + + + Metal Soldier Isaac II + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Return of the Invaders + 1985 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg set 1) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Return of the Invaders (bootleg set 2) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Fighting Roller + 1983 + [Kaneko] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Roller Aces + 1983 + [Kaneko] (Williams license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VS Gong Fight + 1984 + Kaneko + + + + + + + + + + + + + + + + + + + + + + Ring Fighter (set 1) + 1984 + Taito + + + + + + + + + + + + + + + + + + + + Ring Fighter (set 2) + 1984 + Taito + + + + + + + + + + + + + + + + + + + + Field Day + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Undoukai (Japan) + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Forty-Love + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Nihon-ichi (set 1) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Nihon-ichi (set 2) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + Nunchackun + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + Go Go Mr. Yamaguchi / Yuke Yuke Yamaguchi-kun + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + Mission 660 (US) + 1986 + [Wood Place] Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mission 660 (Japan) + 1986 + [Wood Place] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mission 660 (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Alphax Z (Japan) + 1986 + Ed/Wood Place + + + + + + + + + + + + + + + + + + + + + + + + + + + + Buggy Challenge + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Buggy Challenge (Tecfri) + 1984 + Taito Corporation (Tecfri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + The FairyLand Story + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + The FairyLand Story (Japan) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + Onna Sansirou - Typhoon Gal (set 1) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Onna Sansirou - Typhoon Gal (set 2) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Gladiator (US) + 1986 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Ohgon no Siro (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + N.Y. Captor + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + Ben Bero Beh (Japan) + 1984 + Taito + + + + + + + + + + + + + + + + + + + + + + + + Halley's Comet (US) + 1986 + Taito America Corporation (Coin-It license) + + + + + + + + + + + + + + + + + + + + + + + + + + Halley's Comet (Japan set 1) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Halley's Comet (Japan set 2) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Land Sea Air Squad / Riku Kai Kuu Saizensen + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Storming Party / Riku Kai Kuu Saizensen + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tokio / Scramble Formation (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (US with mode select) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Bubble Bobble (US) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Bobble Bobble + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Super Bobble Bobble + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Miss Bubble 2 + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + KiKi KaiKai + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + Kick and Run + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + Mexico 86 + 1986 + bootleg + + + + + + + + + + + + + + + + + + Darius (World) + 1986 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (Japan old version) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius (Extra) (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rastan (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Rastan (US set 1) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Rastan (US set 2) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Rastan Saga (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Top Speed (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Speed (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + Full Throttle (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Operation Wolf (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + Operation Bear + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Operation Thunderbolt (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Rainbow Islands (new version) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + Rainbow Islands (old version) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + Rainbow Islands (Extra) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + Jumping + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Arkanoid (World) + 1986 + Taito Corporation Japan + + + + + + + + + + + + + + + Arkanoid (US) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + Arkanoid (US, older) + 1986 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + Arkanoid (Japan) + 1986 + Taito Corporation + + + + + + + + + + + + + + + Arkanoid (Japanese bootleg Set 2) + 1986 + bootleg + + + + + + + + + + + + + + + Arkanoid (Japanese bootleg Set 3) + 1986 + bootleg + + + + + + + + + + + + + Paddle 2 + 1986 + bootleg + + + + + + + + + + + + + Arkanoid (Tayto bootleg, Japanese) + 1986 + bootleg + + + + + + + + + + + + + Block (bootleg, Japanese) + 1986 + bootleg + + + + + + + + + + + + + Block (Game Corporation bootleg) + 1986 + bootleg + + + + + + + + + + + + + Arkanoid (Game Corporation bootleg) + 1986 + bootleg + + + + + + + + + + + + + Tournament Arkanoid (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + Super Qix + 1987 + Taito + + + + + + + + + + + + + Super Qix (bootleg) + 1987 + bootleg + + + + + + + + + + + + Perestroika Girls + 1993 + Promat / Fuuki + + + + + + + + + + Prebillian + 1986 + Taito + + + + + + + + + + + + + Exzisus (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Minivader + 1990 + Taito Corporation + + + + + Volfied (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Volfied (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + Volfied (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Bonze Adventure (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + Bonze Adventure (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + Jigoku Meguri (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + Asuka & Asuka (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + Maze of Flott (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + Cadash (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Cadash (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Cadash (Italy) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Cadash (France) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Galmedes (Japan) + 1992 + Visco + + + + + + + + + + + + + U.N. Defense Force: Earth Joker (Japan) + 1993 + Visco + + + + + + + + + + + + + + + Kokontouzai Eto Monogatari (Japan) + 1994 + Visco + + + + + + + + + + + + + World Grand Prix (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + World Grand Prix (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + World Grand Prix (joystick version set 1) (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + World Grand Prix (joystick version set 2) (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + World Grand Prix 2 (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Slap Shot (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + Operation Wolf 3 (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Operation Wolf 3 (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + The Ninja Warriors (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Ninja Warriors (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius II (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius II (dual screen) (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Darius II (dual screen) (Japan old version) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Warrior Blade - Rastan Saga Episode III (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Superman + 1988 + Taito Corporation + + + + + + + + + + + + + + + + Twin Hawk (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + Twin Hawk (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + Daisenpu (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + Gigandes + 1989 + East Technology + + + + + + + + + + + + + + + + + Balloon Brothers + 1992 + East Technology + + + + + + + + + + + + + + + Plump Pop (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Extermination (US) + 1987 + [Taito] World Games + + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (US) + 1987 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + Arkanoid - Revenge of DOH (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + Dr. Toppel's Adventure (World) + 1987 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Dr. Toppel's Adventure (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Dr. Toppel's Tankentai (Japan) + 1987 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Kageki (US) + 1988 + Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + Kageki (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Chuka Taisen (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Chuka Taisen (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Chuka Taisen (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + The NewZealand Story (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + The NewZealand Story (World, bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + The NewZealand Story 2 (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + Insector X (World) + 1989 + Taito Corporation Japan + + + + + + + + + + Raimais (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + Kuri Kinton (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + Kuri Kinton (US) + 1988 + Taito America Corporation + + + + + + + + + + + Kuri Kinton (Japan) + 1988 + Taito Corporation + + + + + + + + + + + Kuri Kinton (World, prototype?) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Evil Stone + 1990 + Spacy Industrial, Ltd. + + + + + + + + + + + Fighting Hawk (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + Plotting (World) + 1989 + Taito Corporation Japan + + + + + + + + Champion Wrestler (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + Champion Wrestler (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + Champion Wrestler (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + Puzznic (Japan) + 1989 + Taito Corporation + + + + + + + + + American Horseshoes (US) + 1990 + Taito America Corporation + + + + + + + + + + Palamedes (Japan) + 1990 + Taito Corporation + + + + + + + + Cachat (Japan) + 1993 + Taito Corporation + + + + + + + + + + Tube-It + 1993 + Taito Corporation + + + + + + + + Cuby Bop + Taito Corporation + + + + + + + + + + Play Girls + 1992 + Hot-B. + + + + + + + + Play Girls 2 + 1993 + Hot-B. + + + + + + + + Syvalion (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Recordbreaker (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Dynamite League (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Master of Weapon (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + Nastar (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + Nastar Warrior (US) + 1988 + Taito America Corporation + + + + + + + + + + + + + + + Rastan Saga 2 (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + Rambo III (Europe set 1) + 1989 + Taito Europe Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rambo III (Europe set 2) + 1989 + Taito Europe Corporation + + + + + + + + + + + + + + + + Rambo III (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + Crime City (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + Crime City (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + Crime City (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + Tetris (Japan, B-System) + 1989 + Sega + + + + + + + + + + + Violence Fight (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + Ashura Blaster (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + Ashura Blaster (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + Hit the Ice (US) + 1990 + Williams + + + + + + + + + + + + + + + + Sonic Blast Man (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + Sel Feena + 1991 + East Technology + + + + + + + + + + + + Silent Dragon (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Silent Dragon (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + Ryu Jin (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + Quiz Sekai wa SHOW by shobai (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + Puzzle Bobble (Japan, B-System) + 1994 + Taito Corporation + + + + + + + + + + + + Space Invaders DX (US) v2.1 + 1994 + Taito Corporation + + + + + + + + + + + + Space Invaders DX (Japan) v2.1 + 1994 + Taito Corporation + + + + + + + + + + + + Space Invaders DX (Japan) v2.0 + 1994 + Taito Corporation + + + + + + + + + + + + Continental Circus (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + Continental Circus (US) + 1987 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chase H.Q. (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enforce (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Striker (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 + + + + + + + + + + + + + + + + + + + + + + + + + + + Special Criminal Investigation (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Shark (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Shark (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aqua Jack (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + Aqua Jack (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Space Gun (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Double Axle (US) + 1991 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Wheels (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gunbuster (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Super Chase - Criminal Termination (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Ground Effects / Super Ground Effects (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Under Fire (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + Final Blow (World) + 1988 + Taito Corporation Japan + + + + + + + + + + + + + + + + Final Blow (Japan) + 1988 + Taito Corporation + + + + + + + + + + + + + + + + Don Doko Don (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + Don Doko Don (US) + 1989 + Taito America Corporation + + + + + + + + + + + + + + + Don Doko Don (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + Mega Blast (World) + 1989 + Taito Corporation Japan + + + + + + + + + + + + + + + + Mega Blast (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + + + + + Thunder Fox (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Thunder Fox (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + + + + Thunder Fox (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + + Cameltry (US) + 1989 + Taito America Corporation + + + + + + + + + + + + Cameltry (US, alt sound) + 1989 + Taito America Corporation + + + + + + + + + + + + Cameltry (Japan) + 1989 + Taito Corporation + + + + + + + + + + + + Quiz Torimonochou (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + Liquid Kids (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + Liquid Kids (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + + Mizubaku Daibouken (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + Quiz H.Q. (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + Super Space Invaders '91 (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + Majestic Twelve - The Space Invaders Part IV (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + Gun & Frontier (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + Gun Frontier (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + Growl (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + Growl (US) + 1990 + Taito America Corporation + + + + + + + + + + + + + + + + Runark (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + Mahjong Quest (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + Mahjong Quest (No Nudity) + 1990 + Taito Corporation + + + + + + + + + + + + + + Football Champ (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + Hat Trick Hero (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + Euro Champ '92 (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + Ah Eikou no Koshien (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + Yuuyu no Quiz de GO!GO! (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + The Ninja Kids (World) + 1990 + Taito Corporation Japan + + + + + + + + + + + + + + + + The Ninja Kids (Japan) + 1990 + Taito Corporation + + + + + + + + + + + + + + + + Solitary Fighter (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + Quiz Quest - Hime to Yuusha no Monogatari (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + PuLiRuLa (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + + + + PuLiRuLa (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + Metal Black (World) + 1991 + Taito Corporation Japan + + + + + + + + + + + + + + + + Metal Black (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + + + + Quiz Chikyu Bouei Gun (Japan) + 1991 + Taito Corporation + + + + + + + + + + + + + Yes/No Sinri Tokimeki Chart + 1992 + Taito Corporation + + + + + + + + + + + + Dead Connection (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + Dead Connection (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + Dino Rex (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + Dino Rex (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + Dino Rex (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + Quiz Jinsei Gekijoh (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + Quiz Crayon Shinchan (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + Crayon Shinchan Orato Asobo (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + Drift Out (Japan) + 1991 + Visco + + + + + + + + + + + + Drive Out + 1991 + bootleg + + + + + + + + + + + + + + Ring Rage (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Ring Rage (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Ring Rage (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Arabian Magic (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Arabian Magic (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Arabian Magic (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Riding Fight (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + Riding Fight (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + Riding Fight (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + Grid Seeker: Project Stormhammer (World) + 1992 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Grid Seeker: Project Stormhammer (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Grid Seeker: Project Stormhammer (US) + 1992 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '93 (Japan) + 1992 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Taito Cup Finals (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (World new version) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (Japan new version) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Prime Time Fighter (US new version) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (World old version) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Top Ranking Stars (Japan old version) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Prime Time Fighter (US old version) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Gunlock (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Rayforce (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Rayforce (US) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Super Cup Finals (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + International Cup '94 + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Dungeon Magic (World) + 1993 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + Light Bringer (Japan) + 1993 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Dungeon Magic (US) + 1993 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + Kaiser Knuckle (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kaiser Knuckle (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Global Champion (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dan-Ku-Ga (Prototype) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Darius Gaiden - Silver Hawk (Extra Version) [Official Hack] + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Bubble Bobble 2 (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Bubble Symphony (Europe) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Bubble Symphony (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Bubble Symphony (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Space Invaders DX (Japan F3 version) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + Taito Power Goal (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '95 (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Hat Trick Hero '95 (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Theater - 3tsu no Monogatari (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + Elevator Action Returns (World) + 1994 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Elevator Action Returns (Japan) + 1994 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Elevator Action 2 (US) + 1994 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Space Invaders '95 - Attack Of The Lunar Loonies (World) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + Space Invaders '95 - Attack Of The Lunar Loonies (US) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + Akkanvader (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Twin Qix (US Prototype) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + Moriguchi Hiroko no Quiz de Hyuu!Hyuu! (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2 (World) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2 (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + Bust-A-Move Again (US) + 1995 + Taito America Corporation + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2X (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + Gekirindan (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Kyukyoku Tiger 2 (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + Bubble Memories - The Story Of Bubble Bobble 3 (World) + 1995 + Taito Corporation Japan + + + + + + + + + + + + + + + + + + + Bubble Memories - The Story Of Bubble Bobble 3 (Japan) + 1995 + Taito Corporation + + + + + + + + + + + + + + + + + + + Cleopatra Fortune (Japan) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (World) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (US) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 3 (Japan) + 1996 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Arkanoid Returns (Japan) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + Kirameki Star Road (Japan) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Puchi Carat (Japan) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (World) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (Japan) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 4 (US) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Pop 'N Pop (World) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Pop 'N Pop (Japan) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Pop 'N Pop (US) + 1997 + Taito Corporation + + + + + + + + + + + + + + + + + + + + Land Maker (Japan) + 1998 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + Performan (Japan) + 1985 + [Toaplan] Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Performan (US) + 1985 + [Toaplan] Data East USA + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (set 1) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (set 2) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (Japan) + 1985 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (bootleg 1) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Tiger Heli (bootleg 2) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Slap Fight + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + Slap Fight (Japan bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Slap Fight (English bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Alcon + 1986 + <unknown> + + + + + + + + + + + + + + + + + + + + + + + + Guardian + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Get Star (Japan) + 1986 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + Get Star (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Sisters (Japan) + 1986 + Toaplan + + + + + + + + + + + + + + + Flying Shark (World) + 1987 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Shark (US) + 1987 + [Toaplan] Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hishou Zame (Japan) + 1987 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flying Shark (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wardner (World) + 1987 + [Toaplan] Taito Corporation Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pyros (US) + 1987 + [Toaplan] Taito America Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wardner no Mori (Japan) + 1987 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twin Cobra (World) + 1987 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twin Cobra (US) + 1987 + [Toaplan] Taito America Corporation (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyukyoku Tiger (Japan) + 1987 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gulf War II + 1991 + Comad + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rally Bike / Dash Yarou + 1988 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + Truxton / Tatsujin + 1988 + [Toaplan] Taito Corporation + + + + + + + + + + + + + + + + + + + Hellfire + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + + + + Hellfire (1P Ver.) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + + + + Zero Wing + 1989 + Toaplan + + + + + + + + + + + + + + + + + + + + + Demon's World / Horror Story + 1990 + Toaplan + + + + + + + + + + + + + + + + + + + + + + Demon's World / Horror Story (Taito license) + 1989 + Toaplan (Taito license) + + + + + + + + + + + + + + + + + + + + + + Fire Shark + 1990 + Toaplan + + + + + + + + + + + + + + + + + + + + Same! Same! Same! + 1989 + Toaplan + + + + + + + + + + + + + + + + + + + + Same! Same! Same! (2P Ver.) + 1989 + Toaplan + + + + + + + + + + + + + + + + + + + + Out Zone (set 1) + 1990 + Toaplan + + + + + + + + + + + + + + + + + Out Zone (set 2) + 1990 + Toaplan + + + + + + + + + + + + + + + + + Vimana + 1991 + Toaplan + + + + + + + + + + + + + + + + Vimana (old set) + 1991 + Toaplan + + + + + + + + + + + + + + + + Vimana (Nova Apparate GMBH & Co) + 1991 + Toaplan (Nova Apparate GMBH & Co license) + + + + + + + + + + + + + + + + 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 (Japan) + 1990 + Toaplan + + + + + + + + + + + + + The Winter Bobble + 1990 + bootleg + + + + + + + + + + + + + + + + + + + Snow Brothers 3 - Magical Adventure + 2002 + Syrmex / hack? + + + + + + + + + + Teki Paki + 1991 + Toaplan + + + + + + + + + Ghox + 1991 + Toaplan + + + + + + + + + Dogyuun + 1992 + Toaplan + + + + + + + + + + + + Knuckle Bash + 1993 + Toaplan + + + + + + + + + + + + + Truxton II / Tatsujin II / Tatsujin Oh (Japan) + 1992 + Toaplan + + + + + + + + + + Pipi & Bibis / Whoopee!! + 1991 + Toaplan + + + + + + + + + + + Whoopee!! / Pipi & Bibis + 1991 + Toaplan + + + + + + + + + + + Pipi & Bibis / Whoopee!! (bootleg ?) + 1991 + [Toaplan] Ryouta Kikaku + + + + + + + + + + + + + + V-Five (Japan) + 1993 + Toaplan + + + + + + + + Grind Stormer + 1992 + Toaplan + + + + + + + + Grind Stormer (older set) + 1992 + Toaplan + + + + + + + + Batsugun + 1993 + Toaplan + + + + + + + + + + + + + + Batsugun (Special Ver.) + 1993 + Toaplan + + + + + + + + + + + + + + Snow Bros. 2 - With New Elves / Otenki Paradise + 1994 + [Toaplan] Hanafram + + + + + + + + + + + + Mahou Daisakusen (Japan) + 1993 + Raizing (Able license) + + + + + + + + + + + + + Shippu Mahou Daisakusen (Japan) + 1994 + Raizing/8ing + + + + + + + + + + + + + + Battle Garegga - Type 2 (Denmark / China) (Tue Apr 2 1996) + 1996 + Raizing/8ing + + + + + + + + + + + + + + + + Battle Garegga (Europe / USA / Japan / Asia) (Sat Feb 3 1996) + 1996 + Raizing/8ing + + + + + + + + + + + + + + + + Battle Garegga (Austria / Hong Kong) (Sat Mar 2 1996) + 1996 + Raizing/8ing + + + + + + + + + + + + + + + + Armed Police Batrider (Japan, version B) + 1998 + Raizing/8ing + + + + + + + + + + + + + + + + + + + Armed Police Batrider (Japan, version A) + 1998 + Raizing/8ing + + + + + + + + + + + + + + + + + + + Armed Police Batrider (Korea, version B) + 1998 + Raizing/8ing + + + + + + + + + + + + + + + + + + + Battle Bakraid - unlimited version (Japan) (Tue Jun 8 1999) + 1999 + 8ing + + + + + + + + + + + + + + + + + + Battle Bakraid (Japan) (Wed Apr 7 1999) + 1999 + 8ing + + + + + + + + + + + + + + + + + + Mazinger Z + 1994 + Banpresto/Dynamic Pl. Toei Animation + + + + + + + + + + + + + + + DonPachi (US) + 1995 + Atlus/Cave + + + + + + + + + + + + + + + DonPachi (Japan) + 1995 + Atlus/Cave + + + + + + + + + + + + + + + DonPachi (Korea) + 1995 + Atlus/Cave + + + + + + + + + + + + + + + Metamoqester + 1995 + Banpresto/Pandorabox + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (95/03/22B) + 1995 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + Pretty Soldier Sailor Moon (95/03/22) + 1995 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + Air Gallet (Taiwan) + 1996 + Banpresto / Gazelle + + + + + + + + + + + + + + + + + + Hotdog Storm + 1996 + Marble + + + + + + + + + + + + + + + + DoDonPachi (International) + 1997 + Atlus/Cave + + + + + + + + + + + + + + + + DoDonPachi (Japan) + 1997 + Atlus/Cave + + + + + + + + + + + + + + + + Dangun Feveron (Japan) + 1998 + Cave (Nihon System license) + + + + + + + + + + + + ESP Ra.De. (International Ver 1998 4/22) + 1998 + Atlus/Cave + + + + + + + + + + + + + + + + + ESP Ra.De. (Japan Ver 1998 4/21) + 1998 + Atlus/Cave + + + + + + + + + + + + + + + + + ESP Ra.De. (Japan Ver 1998 4/14) + 1998 + Atlus/Cave + + + + + + + + + + + + + + + + + Uo Poko (Japan) + 1998 + Cave (Jaleco license) + + + + + + + + + + Guwange (Japan) + 1999 + Atlus/Cave + + + + + + + + + + + + + + + Hyper Pacman + 1995 + SemiCom + + + + + + + + + + + + + + Hyper Pacman (bootleg) + 1995 + bootleg + + + + + + + + + + + + + + Gyrodine + 1984 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Son of Phoenix + 1985 + Associated Overseas MFR, Inc + + + + + + + + + + + + + + + + + + + + + + + + + + + + Repulse + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + '99: The Last War + 1985 + Proma + + + + + + + + + + + + + + + + + + + + + + + + + + + + '99: The Last War (alternate) + 1985 + Proma + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flashgal + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + S.R.D. Mission + 1986 + Taito Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + Legend + Sega/Coreland (?) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Airwolf + 1987 + Kyugo + + + + + + + + + + + + + + + + + + + + Sky Wolf (set 1) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Sky Wolf (set 2) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Defender (Red label) + 1980 + Williams + + + + + + + + + + + + + + + + + + Defender (Green label) + 1980 + Williams + + + + + + + + + + + + + + + + + + Defender (White label) + 1980 + Williams + + + + + + + + + + + + + + + + + Defense Command (set 1) + 1980 + bootleg + + + + + + + + + + + + + + + + + Defence Command + 1981 + Outer Limits + + + + + + + + + + + + + + + + + Mayday (set 1) + 1980 + <unknown> + + + + + + + + + + + + + + Mayday (set 2) + 1980 + <unknown> + + + + + + + + + + + + + + Mayday (set 3) + 1980 + <unknown> + + + + + + + + + + + + + + + + + + Colony 7 (set 1) + 1981 + Taito + + + + + + + + + + + + + + + Colony 7 (set 2) + 1981 + Taito + + + + + + + + + + + + + + + Stargate + 1981 + Williams + + + + + + + + + + + + + + + + + + + Robotron (Solid Blue label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Robotron (Yellow/Orange label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Joust (White/Green label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Joust (Solid Red label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Joust (White/Red label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Bubbles + 1982 + Williams + + + + + + + + + + + + + + + + + + + Bubbles (Solid Red label) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Bubbles (prototype version) + 1982 + Williams + + + + + + + + + + + + + + + + + + + Splat! + 1982 + Williams + + + + + + + + + + + + + + + + + + + Sinistar (revision 3) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + + + Sinistar (prototype version) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + + + Sinistar (revision 2) + 1982 + Williams + + + + + + + + + + + + + + + + + + + + + + + PlayBall! (prototype) + 1983 + Williams + + + + + + + + + + + + + + + + + + + + + + + + Blaster + 1983 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + Blaster (kit) + 1983 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + Speed Ball (prototype) + 1985 + Williams + + + + + + + + + + + + + + + + + + + + Mystic Marathon + 1983 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + Turkey Shoot + 1984 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + Inferno + 1984 + Williams + + + + + + + + + + + + + + + + + + + + + + + + Joust 2 - Survival of the Fittest (set 1) + 1986 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lotto Fun + 1987 + H.A.R. Management + + + + + + + + + + + + + + + + + + + Vulgus (set 1) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vulgus (set 2) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vulgus (Japan?) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Son Son + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Son Son (Japan) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Pirate Ship HigeMaru + 1984 + Capcom + + + + + + + + + + + + + + + + + + 1942 (set 1) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (set 2) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1942 (set 3) + 1984 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Exed Exes + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Savage Bees + 1985 + Capcom (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Commando (World) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Commando (US) + 1985 + Capcom (Data East USA license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Senjou no Ookami + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Invasion + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (World? set 1) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (World? set 2) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghosts'n Goblins (US) + 1985 + Capcom (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + Makai-Mura (Japan) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Makai-Mura (Japan Revision C) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Makai-Mura (Japan Revision G) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Diamond Run + 1989 + KH Video + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (World) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (US set 1) + 1985 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (US set 2) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gun.Smoke (Japan) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Section Z (set 1) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Section Z (set 2) + 1985 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Trojan (US) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Trojan (Romstar) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tatakai no Banka (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Speed Rumbler (set 1) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Speed Rumbler (set 2) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rush & Crash (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legendary Wings (US set 1) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Legendary Wings (US set 2) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Ares no Tsubasa (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (World) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (US) + 1986 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Side Arms - Hyper Dyne (Japan) + 1986 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turtle Ship + 1988 + Philko + + + + + + + + + + + + + + + + + + + + + + + Dyger (Korea set 1) + 1989 + Philko + + + + + + + + + + + + + + + + + + + + + + + Dyger (Korea set 2) + 1989 + Philko + + + + + + + + + + + + + + + + + + + + + + + Avengers (US set 1) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Avengers (US set 2) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hissatsu Buraiken (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commando (US set 1) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bionic Commando (US set 2) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Secret (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943 - The Battle of Midway (US) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1943 - The Battle of Midway (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Black Tiger + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Black Tiger (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Black Dragon + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Black Dragon (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (World) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (US) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter (prototype) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tiger Road (US) + 1987 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + Tora-he no Michi (Japan) + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + F-1 Dream + 1988 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + + + + + F-1 Dream (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + 1943 Kai - Midway Kaisen + 1987 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Duel (US set 1) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Duel (US set 2) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Duel (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mad Gear (US) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Mad Gear (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Led Storm (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Forgotten Worlds (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Lost Worlds (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Ghouls'n Ghosts (World) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghouls'n Ghosts (US) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dai Makai-Mura (Japan) + 1988 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strider (US set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Strider (US set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Strider Hiryu (Japan set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + Strider Hiryu (Japan set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Dynasty Wars (World) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (US) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (Japan, Japanese) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Willow (Japan, English) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + U.N. Squadron (US) + 1989 + Capcom + + + + + + + + + + + + + + + + + + Area 88 (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + Final Fight (World) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + Final Fight (US 900112) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + Final Fight (Japan set 1) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Final Fight (Japan set 2) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1941 - Counter Attack (World) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + 1941 - Counter Attack (Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Mercs (World 900302) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Mercs (US 900302) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Mercs (US 900608) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Senjou no Ookami II (Japan 900302) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Twins (World 900619) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Chiki Chiki Boys (Japan 900619) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Magic Sword - Heroic Fantasy (World 900725) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Magic Sword - Heroic Fantasy (World 900623) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Magic Sword - Heroic Fantasy (US 900725) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Magic Sword (Japan 900623) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Carrier Air Wing (World 901012) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Carrier Air Wing (US 901012) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + U.S. Navy (Japan 901012) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nemo (World 901130) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Nemo (Japan 901120) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (World 910522) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (World 910214) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910206) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910214) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910318) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910228) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910411) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 910522) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (US 911101) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Japan 911210) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Japan 910214) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II - The World Warrior (Japan 910306) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (World 910520) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Three Wonders (US 910520) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder 3 (Japan 910520) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (World 910711) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (US 910910) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (Japan 910805) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + The King of Dragons (bootleg) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + Captain Commando (World 911014) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + Captain Commando (US 910928) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + Captain Commando (Japan 911202) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + Knights of the Round (World 911127) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + Knights of the Round (US 911127) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + Knights of the Round (Japan 911127) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (World 920313) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (US 920313) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (US 920513) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (US 920803) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Japan 920513) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow set 1) + 1992 + hack + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Rainbow set 2) + 1992 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Red Wave) + 1992 + hack + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II! - Champion Edition (V004) + 1992 + hack + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Champion Edition (Accelerator Pt.II) + 1992 + hack + + + + + + + + + + + + + + + + + + + + + + + + + Varth - Operation Thunderstorm (World 920612) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Varth - Operation Thunderstorm (US 920612) + 1992 + Capcom (Romstar license) + + + + + + + + + + + + + + + + + + + Varth - Operation Thunderstorm (Japan 920714) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Capcom World 2 (Japan 920611) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (World 921002) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + Sangokushi II (Asia 921005) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + Warriors of Fate (US 921031) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + Tenchi wo Kurau II - Sekiheki no Tatakai (Japan 921031) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + Street Fighter II' - Hyper Fighting (US 921209) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter II' Turbo - Hyper Fighting (Japan 921209) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (World 930201) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + Cadillacs and Dinosaurs (US 930201) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + Cadillacs Kyouryuu-Shinseiki (Japan 930201) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + The Punisher (World 930422) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (US 930422) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Punisher (Japan 930422) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (World 930713) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saturday Night Slam Masters (US 930713) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Muscle Bomber - The Body Explosion (Japan 930713) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Muscle Bomber Duo - Ultimate Team Battle (World 931206) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Muscle Bomber Duo - Heat Up Warriors (Japan 931206) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pnickies (Japan 940608) + 1994 + Compile (Capcom license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz & Dragons (US 920701) + 1992 + Capcom + + + + + + + + + + + + + + + + + + + + + + Quiz & Dragons (Japan 940921) + 1994 + Capcom + + + + + + + + + + + + + + + + Quiz Tonosama no Yabou 2 Zenkoku-ban (Japan 950123) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Pang! 3 (Euro 950511) + 1995 + Mitchell + + + + + + + + + + + + + + Pang! 3 (Japan 950511) + 1995 + Mitchell + + + + + + + + + + + + + + Mega Man - The Power Battle (CPS1 Asia 951006) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rockman - The Power Battle (CPS1 Japan 950922) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (World 930911) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (US 930911) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (Asia 931005) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (Asia 930914) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (Japan 931005) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (Japan 930911) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The New Challengers (Japan 930910) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The Tournament Battle (World 931119) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2: The Tournament Battle (Japan 930910) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eco Fighters (World 931203) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Ecology (Japan 931203) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (Euro 940412) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (US 940125) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (US 940113) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (Japan 940113) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (Asia 940113) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Tower of Doom (Hispanic 940125) + 1993 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2 Turbo (World 940223) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2 Turbo (US 940223) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2 Turbo (Asia 940223) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Street Fighter 2 X: Grand Master Challenge (Japan 940223) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien vs. Predator (Euro 940520) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Alien vs. Predator (US 940520) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Alien vs. Predator (Japan 940520) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Alien vs. Predator (Asia 940520) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + Darkstalkers: The Night Warriors (Euro 940705) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers: The Night Warriors (US 940818) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers: The Night Warriors (US 940705) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Darkstalkers: The Night Warriors (Asia 940705) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire: The Night Warriors (Japan 940705) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire: The Night Warriors (Japan 940705 alt) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire: The Night Warriors (Japan 940630) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ring of Destruction: Slammasters II (Euro 940902) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Muscle Bomber: The International Blowout (Japan 940831) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Muscle Bomber: The International Blowout (Japan 940808) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (Euro 941011) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (US 941024) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Powered Gear: Strategic Variant Armor Equipment (Japan 941024) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Powered Gear: Strategic Variant Armor Equipment (Japan 940916) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Armored Warriors (Asia 940920) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Euro 950105) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (US 950105) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Hispanic 950331) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Japan 941219) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Japan 941217) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Asia 941217) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men: Children of the Atom (Japan 941208 rent version) + 1994 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors: Darkstalkers' Revenge (US 950406) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors: Darkstalkers' Revenge (Hispanic 950403) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Night Warriors: Darkstalkers' Revenge (Brazil 950403) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter: Darkstalkers' Revenge (Japan 950316) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter: Darkstalkers' Revenge (Japan 950302) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots: Fullmetal Madness (US 950424) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberbots: Fullmetal Madness (Japan 950420) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha: Warriors' Dreams (Euro 950727) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Alpha: Warriors' Dreams (Euro 950718) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Alpha: Warriors' Dreams (Euro 950605) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Alpha: Warriors' Dreams (US 950627) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Zero (Japan 950727) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Zero (Japan 950627) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Zero (Japan 950605) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Zero (Hispanic 950627) + 1995 + Capcom + + + + + + + + + + + + + + + + + + Street Fighter Zero (Brazil 951109) + 1995 + Capcom + + + + + + + + + + + + + + + + + + Marvel Super Heroes (US 951024) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (Japan 951024) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (Asia 951024) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (Hispanic 951117) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes (Brazil 951117) + 1995 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + 19XX: The War Against Destiny (US 951207) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + 19XX: The War Against Destiny (Japan 951225) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + 19XX: The War Against Destiny (Japan 951207) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + 19XX: The War Against Destiny (Asia 951207) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + 19XX: The War Against Destiny (Hispanic 951218) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (Euro 960209) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (US 960619) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (US 960209) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (Japan 960206) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (Japan 960619) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Dungeons & Dragons: Shadow over Mystara (Asia 960619) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 2 (US 960306) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (Japan 960227) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 (Asia 960227) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Super Puzzle Fighter 2 Turbo (US 960620) + 1996 + Capcom + + + + + + + + + + + + + + + + + Super Puzzle Fighter 2 X (Japan 960531) + 1996 + Capcom + + + + + + + + + + + + + + + + + Quiz Nanairo Dreams: Nijiirochou no Kiseki (Japan 960826) + 1996 + Capcom + + + + + + + + + + + + + + + + + + Mega Man 2: The Power Fighters (US 960708) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + Mega Man 2: The Power Fighters (Asia 960708) + 1996 + Capcom + + + + + + + + + + + + + + + + + Rockman 2: The Power Fighters (Japan 960708) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (Japan 960805) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (Hispanic 960813) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 2 Alpha (Asia 960826) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (Euro 960910) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (US 961004) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (Japan 960910) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (Japan 960909) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (Asia 961023) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + X-Men Vs. Street Fighter (Hispanic 961004) + 1996 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Battle Circuit (Euro 970319) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Battle Circuit (Japan 970319) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + Battle Circuit (Asia 970319) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + Vampire Savior: The Lord of Vampire (Euro 970519) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior: The Lord of Vampire (US 970519) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior: The Lord of Vampire (Japan 970519) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior: The Lord of Vampire (Asia 970519) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior: The Lord of Vampire (Hispanic 970519) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (US 970827) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (US 970625) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Japan 970707) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Japan 970702) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Japan 970625) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Hispanic 970625) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Asia 970625) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Super Heroes Vs. Street Fighter (Asia 970620) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Capcom Sports Club (Japan 970722) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + Capcom Sports Club (Asia 970722) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + Capcom Sports Club (Hispanic 970722) + 1997 + Capcom + + + + + + + + + + + + + + + + + + Super Gem Fighter Mini Mix (US 970904) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Pocket Fighter (Japan 970904) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Super Gem Fighter: Mini Mix (Asia 970904) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + Super Gem Fighter: Mini Mix (Hispanic 970904) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + Vampire Hunter 2: Darkstalkers Revenge (Japan 970913) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vampire Savior 2: The Lord of Vampire (Japan 970913) + 1997 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Vs. Capcom: Clash of Super Heroes (US 980123) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Vs. Capcom: Clash of Super Heroes (Japan 980112) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Vs. Capcom: Clash of Super Heroes (Asia 980112) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marvel Vs. Capcom: Clash of Super Heroes (Hispanic 980123) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (US 980904) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Alpha 3 (US 980629) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (Japan 980727) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (Japan 980629) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter Zero 3 (Asia 980701) + 1998 + Capcom + + + + + + + + + + + + + + + + + + + + + + + + + + + + Giga Wing (US 990222) + 1999 + Capcom, supported by Takumi + + + + + + + + + + + + + + + + + + Giga Wing (Japan 990223) + 1999 + Capcom, supported by Takumi + + + + + + + + + + + + + + + + + + Dimahoo (US 000121) + 2000 + Eighting/Raizing, distributed by Capcom + + + + + + + + + + + + + + + + + + + Great Mahou Daisakusen (Japan 000121) + 2000 + Eighting/Raizing, distributed by Capcom + + + + + + + + + + + + + + + + + + + Mars Matrix: Hyper Solid Shooting (US 000412) + 2000 + Capcom, supported by Takumi + + + + + + + + + + + + + + + + + + + + + + + Mars Matrix: Hyper Solid Shooting (Japan 000412) + 2000 + Capcom, supported by Takumi + + + + + + + + + + + + + + + + + + + + + + + 1944: The Loop Master (US 000620) + 2000 + Capcom, supported by Eighting/Raizing + + + + + + + + + + + + + + + + + + + + + 1944: The Loop Master (Japan 000620) + 2000 + Capcom, supported by Eighting/Raizing + + + + + + + + + + + + + + + + + + + + Mighty! Pang (Japan 001011) + 2000 + Mitchell, distributed by Capcom + + + + + + + + + + + + + + + + + + + + + Mahjong Gakuen + 1988 + Yuga + + + + + + + + + + + + + + + Chi-Toitsu + 1988 + Yuga + + + + + + + + + + + + + + + Mahjong Gakuen 2 Gakuen-chou no Fukushuu + 1989 + Face + + + + + + + + + + + + + + + + Poker Ladies + 1989 + Mitchell + + + + + + + + + + + + + + + + Poker Ladies (Leprechaun) + 1989 + Leprechaun + + + + + + + + + + + + + + + + Dokaben (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + Pang (World) + 1989 + Mitchell + + + + + + + + + + + + + + + Pang (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + Buster Bros. (US) + 1989 + Capcom + + + + + + + + + + + + + + + Pomping World (Japan) + 1989 + Mitchell + + + + + + + + + + + + + + + Capcom Baseball (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + Capcom World (Japan) + 1989 + Capcom + + + + + + + + + + + + + + + + + + + + Adventure Quiz 2 Hatena Hatena no Dai-Bouken (Japan) + 1990 + Capcom + + + + + + + + + + + + + + + + + + + + Super Pang (World) + 1990 + Mitchell + + + + + + + + + + + + + + + + Super Buster Bros. (US) + 1990 + Mitchell + Capcom + + + + + + + + + + + + + + + + Super Marukin-Ban + 1990 + Yuga + + + + + + + + + + + + + + + Quiz Tonosama no Yabou (Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + Quiz Sangokushi (Japan) + 1991 + Capcom + + + + + + + + + + + + + + + + + + + + Block Block (World 911106 Joystick) + 1991 + Capcom + + + + + + + + + + + + + + + + Block Block (World 910910) + 1991 + Capcom + + + + + + + + + + + + + + + + Block Block (Japan 910910) + 1991 + Capcom + + + + + + + + + + + + + + + + Block Block (bootleg) + 1991 + bootleg + + + + + + + + + + + + + + + + + + Capcom Bowling (set 1) + 1988 + Incredible Technologies + + + + + + + + + + + + Capcom Bowling (set 2) + 1988 + Incredible Technologies + + + + + + + + + + + + Coors Light Bowling + 1989 + Incredible Technologies + + + + + + + + + + + + Bowl-O-Rama + 1991 + P & P Marketing + + + + + + + + + + Wheel Of Fortune + 1989 + GameTek + + + + + + + + + + + + + + Wheel Of Fortune (alternate) + 1989 + GameTek + + + + + + + + + + + + + + Strata Bowling (V3) + 1990 + Strata/Incredible Technologies + + + + + + + + + + + + + Strata Bowling (V1) + 1990 + Strata/Incredible Technologies + + + + + + + + + + + + + Golden Tee Golf (Joystick, v3.1) + 1990 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Hot Shots Tennis (V1.1) + 1990 + Strata/Incredible Technologies + + + + + + + + + + + + + + + Hot Shots Tennis (V1.0) + 1990 + Strata/Incredible Technologies + + + + + + + + + + + + + + + Slick Shot (V2.2) + 1990 + Grand Products/Incredible Technologies + + + + + + + + + + + + + + Slick Shot (V1.7) + 1990 + Grand Products/Incredible Technologies + + + + + + + + + + + + + + Arlington Horse Racing (v1.21-D) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + Peggle (Joystick, v1.0) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + Peggle (Trackball, v1.0) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + Rim Rockin' Basketball (V2.2) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + Rim Rockin' Basketball (V2.0) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + Rim Rockin' Basketball (V1.6) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + Rim Rockin' Basketball (V1.2) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + Ninja Clowns (08/27/91) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + Golden Tee Golf II (Trackball, V2.2) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Golden Tee Golf II (Trackball, V1.1) + 1989 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Golden Tee Golf II (Joystick, V1.0) + 1991 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + Neck-n-Neck (v1.2) + 1992 + Bundra Games/Incredible Technologies + + + + + + + + + + + + + + Time Killers (v1.32) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + Time Killers (v1.31) + 1992 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + Hard Yardage (v1.20) + 1993 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Hard Yardage (v1.00) + 1993 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.22) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.20) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v2.10) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Storm (v1.10) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pairs (09/07/94) + 1994 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.66) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.65) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + World Class Bowling (v1.2) + 1995 + Incredible Technologies + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.12) + 1995 + Capcom/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.10) + 1995 + Capcom/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + Street Fighter: The Movie (v1.12N, Japan) + 1995 + Capcom/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + Shuffleshot + 1997 + Strata/Incredible Technologies + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cerberus + 1985 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mayhem 2002 + 1985 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Play + 1985 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + World Series: The Season + 1985 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alley Master + 1986 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Danger Zone + 1986 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + Baseball The Season II + 1987 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Baseball Double Play Home Run Derby + 1987 + Leland Corp. / Tradewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strike Zone Baseball + 1988 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Redline Racer (2 players) + 1987 + Cinematronics (Tradewest license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quarterback + 1987 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quarterback (set 2) + 1987 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Viper + 1988 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + John Elway's Team Quarterback + 1988 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + John Elway's Team Quarterback (set 2) + 1988 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All American Football (rev E) + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All American Football (rev D, 2 Players) + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All American Football (rev C) + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + All American Football (rev B) + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ironman Stewart's Super Off-Road + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ironman Stewart's Super Off-Road Track Pack + 1989 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pigout + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pigout (alternate) + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ataxx (set 1) + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + Ataxx (set 2) + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + Ataxx (Japan) + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + World Soccer Finals + 1990 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Danny Sullivan's Indy Heat + 1991 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Brute Force + 1991 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Asylum (prototype) + 1991 + Leland Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blockade + 1976 + Gremlin + + + + + + + + + + Comotion + 1976 + Gremlin + + + + + + + + + + + + Hustle + 1977 + Gremlin + + + + + + + + + + + + Blasto + 1978 + Gremlin + + + + + + + + + + + + Minesweeper + 1977 + Amutech + + + + + + + + + + Depthcharge + 1977 + Gremlin + + + + + + + + + + + + + + + + + + Safari + 1977 + Gremlin + + + + + + + + + + + + + + + + Frogs + 1978 + Gremlin + + + + + + + + + + + + Space Attack (upright) + 1979 + Sega + + + + + + + + + + + + + Space Attack (upright, older) + 1979 + Sega + + + + + + + + + + + + + Space Attack (cocktail) + 1979 + Sega + + + + + + + + + + + + + Head On (2 players) + 1979 + Gremlin + + + + + + + + + + + + Head On (1 player) + 1979 + Gremlin + + + + + + + + + + + + Head On 2 + 1979 + Sega + + + + + + + + + + + + + + + Invinco / Head On 2 + 1979 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + Invinco + 1979 + Sega + + + + + + + + + + + + + + + + + + + + + + + Invinco / Deep Scan + 1979 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tranquilizer Gun + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + Space Trek (upright) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + Space Trek (cocktail) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + Carnival (upright) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Carnival (cocktail) + 1980 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Digger + 1980 + Sega + + + + + + + + + + + + + + Pulsar + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Heiankyo Alien + 1979 + Denki Onkyo + + + + + + + + + + + + + + + + + + + + + Alpha Fighter / Head On + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Fury (revision C) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Fury (revision A) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zektor (revision B) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tac/Scan + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (2 Players, set 1) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (2 Players, set 2) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eliminator (4 Players) + 1981 + Gremlin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Trek + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Blaster (version 3) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Blaster (version 2) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Blaster (version 1) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 005 + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Monster Bash + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Odyssey + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pig Newton (version C) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pig Newton (version A) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sindbad Mystery + 1983 + Sega + + + + + + + + + + + + + + + + + + + + Zaxxon (set 1) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zaxxon (set 2) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jackson + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Zaxxon + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Future Spy + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Razzmatazz + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Ixion (prototype) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Congo Bongo + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tip Top + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Champion Boxing + 1984 + Sega + + + + + + + + Champion Pro Wrestling + 1985 + Sega + + + + + + + + Star Jacker (Sega) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Star Jacker (Stern) + 1983 + Stern + + + + + + + + + + + + + + + + + + + + + + + Regulus (New Ver.) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Regulus (Old Ver.) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Regulus (not encrypted) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Up'n Down + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Up'n Down (not encrypted) + 1983 + Sega + + + + + + + + + + + + + + + + + + + + + + + Mister Viking + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + + Mister Viking (Japan) + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + + SWAT + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + + + Flicky (128k Ver.) + 1984 + Sega + + + + + + + + + + + + + + + + + + + Flicky (64k Ver.) + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + Water Match + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + + Bullfight + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + + + The Togyu (Japan) + 1984 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + Spatter + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + Sanrin San Chan (Japan) + 1984 + Sega + + + + + + + + + + + + + + + + + + + + + + Pitfall II + 1985 + Sega + + + + + + + + + + + + + + + + + + + + Pitfall II (not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + Sega Ninja + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Sega Ninja (not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Ninja Princess (64k Ver. bootleg?) + 1985 + bootleg? + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Princess (128k Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Ninja Princess (64k Ver. not encrypted) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Princess (128k Ver. bootleg?) + 1985 + bootleg? + + + + + + + + + + + + + + + + + + + + + + + + I'm Sorry (US) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + Gonbee no I'm Sorry (Japan) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + TeddyBoy Blues (New Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + TeddyBoy Blues (Old Ver.) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Heavy Metal + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + My Hero (US) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Seishun Scandal (Japan) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + + My Hero (Korea) + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + + Choplifter + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Choplifter (alternate) + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + Choplifter (bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + 4-D Warriors + 1985 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + + Brain + 1986 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + Rafflesia + 1986 + Coreland / Sega + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 1, new encryption) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 1, old encryption) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 2) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 2 not encrypted) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (set 3) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + Wonder Boy (not encrypted) + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + Wonder Boy Deluxe + 1986 + Sega (Escape license) + + + + + + + + + + + + + + + + + + + + + + + + + Noboranka (Japan) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + Block Gal + 1987 + Sega / Vic Tokai + + + + + + + + + + + + + + + + + + + + + Block Gal (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + Toki no Senshi - Chrono Soldier + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan New Ver.) + 1987 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan Old Ver.) + 1987 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land (Japan not encrypted) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Wonder Boy in Monster Land + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Hang-On Jr. + 1985 + Sega + + + + + + + + + + + Transformer + 1986 + Sega + + + + + + + + + + + Astro Flash (Japan) + 1986 + Sega + + + + + + + + + + + Riddle of Pythagoras (Japan) + 1986 + Sega / Nasco + + + + + + + + + + + Turbo + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted set 1) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Turbo (encrypted set 2) + 1981 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Subroc-3D + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Buck Rogers: Planet of Zoom + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Buck Rogers: Planet of Zoom (not encrypted) + 1982 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Locomotive + 1982 + Sega + + + + + + + + + + + + + + + + + + + Dottori Kun (new version) + 1990 + Sega + + + + + Dottori Kun (old version) + 1990 + Sega + + + + + Angel Kids (Japan) + 1988 + Sega / Nasco? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alex Kidd: The Lost Stars (set 1) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 2) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 3) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (Japan) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Storm + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Alien Storm (2 Player) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Aurail (set 2) + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bay Route (set 2) + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + + + + Bay Route (bootleg set 1) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Bay Route (bootleg set 2) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Flash Point + 1989 + Sega + + + + + + + + + + + + + + Golden Axe (Version 2 317-0110) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (Version 2 317-0122) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (Version 1, Japan) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + Jyuohki (Japan) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (Set 1) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (Set 2) + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Passing Shot (2 Players) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative (Japan) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Super Hang-On + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 2) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 3) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Tetris (Sega Set 1) + 1988 + Sega + + + + + + + + + + + + + + Tetris (Sega Set 2) + 1988 + Sega + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 2) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + + Bloxeed + 1990 + Sega + + + + + + + + + + + + + + + + After Burner (Japan) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + After Burner II + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alex Kidd: The Lost Stars (set 2) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien Syndrome (set 1) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (Version 2) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + Altered Beast (Version 1) + 1988 + Sega + + + + + + + + + + + + + + + + + + + + + + + Alien Storm (bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Point + 1990 + Philko + + + + + + + + + + Aurail (set 1) + 1990 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bay Route (set 1) + 1989 + Sunsoft / Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Body Slam + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Dux (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + Dump Matsumoto (Japan) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (bootleg set 2) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enduro Racer (bootleg set 1) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + E-Swat - Cyber Police (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Fantasy Zone (Japan New Ver.) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Fantasy Zone (Old Ver.) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + Flash Point (World, bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + Flash Point (Japan, bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + Golden Axe (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Golden Axe (Version 2) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + Golden Axe (Version 1) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + Hang-On + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Heavyweight Champ + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Major League + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Michael Jackson's Moonwalker (bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (set 1) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (set 2) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Out Run (set 3) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Passing Shot (4 Players) (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + Passing Shot (2 Players) (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Quartet + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet 2 + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet 2 (Japan) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quartet (Japan) + 1986 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Riot City + 1991 + Sega / Westone + + + + + + + + + + + + + + + + + + + + + + + + + SDI - Strategic Defense Initiative + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + Super Hang-On (bootleg) + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Harrier + 1985 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Dancer (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Dancer (US) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + Shadow Dancer (Japan) + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + Shinobi (set 1) + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Shinobi (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + Tetris (Sega bootleg) + 1988 + bootleg + + + + + + + + + + + + + + Time Scanner + 1987 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Toryumon + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + Tough Turf (Japan) + 1989 + Sega / Sunsoft + + + + + + + + + + + + + + + + + + + + + + + Tough Turf (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Tough Turf (US) + 1989 + Sega / Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (set 1) + 1988 + Sega / Westone + + + + + + + + + + + + + + + + + + + + Wonder Boy III - Monster Lair (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + Wrestle War + 1989 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Ghost Hunter + 1994 + Sega + + + + + + + + + + + + + + + + + Tokoro San no MahMahjan + 1992 + Sega + + + + + + + + + + + + + + + + + Tokoro San no MahMahjan 2 + 1994 + Sega + + + + + + + + + + + + + + + + + Quiz Mekurumeku Story + 1994 + Sega + + + + + + + + + + + + + + + Holosseum + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Super Visual Football + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Super Visual Soccer (US?) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + The J.League 94 (Japan) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Rival (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + Rad Mobile + 1990 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rad Rally + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + F1 Exhaust Note + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Alien 3 + 1993 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Sonic (Japan rev. C) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Sonic (Japan prototype) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jurassic Park + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Golden Axe - The Revenge of Death Adder (US) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Golden Axe - The Revenge of Death Adder (Japan) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + Spiderman (US) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spiderman (Japan) + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + Arabian Fight + 1991 + Sega + + + + + + + + + + + + + + + + + + + + + + + + + + Outrunners (US) + 1992 + Sega + + + + + + + + + + + + + + + + + + + + + + + + Hard Dunk (Japan) + 1994 + Sega + + + + + + + + + + + + + + + + + + + + + + Logic Pro (Japan) + 1996 + Deniam + + + + + + + + + + + + + + + + Croquis (Germany) + 1996 + Deniam + + + + + + + + + + + + + + + + Karian Cross (Rev. 1.0) + 1996 + Deniam + + + + + + + + + + + + + + + + + + + + Logic Pro 2 (Japan) + 1997 + Deniam + + + + + + + + + + + + + Bloxeed (C System) + 1989 + Sega / Elorg + + + + + + + + + + Columns (US) + 1990 + Sega + + + + + + + + Columns (Japan) + 1990 + Sega + + + + + + + + Columns II - The Voyage Through Time (Japan) + 1990 + Sega + + + + + + + + Borench + 1990 + Sega + + + + + + + + + + ThunderForce AC + 1990 + Sega / Technosoft + + + + + + + + + + + + ThunderForce AC (Japan) + 1990 + Sega / Technosoft + + + + + + + + + + + + ThunderForce AC (bootleg) + 1990 + bootleg + + + + + + + + + + + + Ribbit! + 1991 + Sega + + + + + + + + + + + + Tant-R (Puzzle & Action) (Japan) + 1992 + Sega + + + + + + + + + + + + Tant-R (Puzzle & Action) (Japan) (bootleg set 1) + 1992 + bootleg + + + + + + + + + + + + + Tant-R (Puzzle & Action) (Japan) (bootleg set 2) + 1994 + bootleg + + + + + + + + + + Puyo Puyo (Japan) + 1992 + Sega / Compile + + + + + + + + + + + + Puyo Puyo (Japan) (Rev A) + 1992 + Sega / Compile + + + + + + + + + + + + Puyo Puyo (English) (bootleg) + 1992 + bootleg + + + + + + + + + + + + Ichidant-R (Puzzle & Action 2) (Japan) + 1994 + Sega + + + + + + + + + + + + Ichidant-R (Puzzle & Action 2) (English) + 1994 + Sega + + + + + + + + + + + + Ichidant-R (Puzzle & Action 2) (Japan) (bootleg) + 1994 + bootleg + + + + + + + + + + Stack Columns (Japan) + 1994 + Sega + + + + + + + + + + + + Puyo Puyo 2 (Japan) + 1994 + Compile (Sega license) + + + + + + + + + + Poto Poto (Japan) + 1994 + Sega + + + + + + + + + + Zunzunkyou No Yabou (Japan) + 1994 + Sega + + + + + + + + + + + + Puckman Pockimon + 2000 + Genie + + + + + + + + + + + + Lock'n'Chase + 1981 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Zoar + 1982 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + Burger Time (Data East set 1) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Burger Time (Data East set 2) + 1982 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Burger Time (Midway) + 1982 + Data East (Bally Midway license) + + + + + + + + + + + + + + + + + + + + + + + Cook Race + 1982 + bootleg + + + + + + + + + + + + + + + + + + + World Tennis + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Burnin' Rubber + 1982 + Data East + + + + + + + + + + + + + + + Bump 'n' Jump + 1982 + Data East USA (Bally Midway license) + + + + + + + + + + + + + + + + Car Action + 1982 + bootleg + + + + + + + + + + + + + + + Disco No.1 + 1982 + Data East + + + + + + + + + + + + + + + Disco No.1 (Rev.F) + 1982 + Data East + + + + + + + + + + + + + + + Super Doubles Tennis + 1983 + Data East Corporation + + + + + + + + + + + + + + + + Minky Monkey + 1982 + Technos + Roller Tron + + + + + + + + + + + + + + + + + + + + Cassette: Test Tape + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Terranean + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Astro Fantasia + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Super Astro Fighter + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Lock'n'Chase + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Pro Golf + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Lucky Poker + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Treasure Island (set 1) + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Treasure Island (set 2) + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Treasure Island (set 3) + 1981 + DECO + + + + + + + + + + + + + + + + Cassette: Disco No.1 + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Sweet Heart + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Tornado + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Mission-X + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Pro Tennis + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Explorer + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Burger Time + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Burnin' Rubber (set 1) + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Burnin' Rubber (set 2) + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Bump N Jump + 1982 + DECO + + + + + + + + + + + + + + + + Cassette: Graplop (aka Cluster Buster) (set 1) + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Graplop (aka Cluster Buster) (set 2) + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Rootin' Tootin' (aka La.Pa.Pa) + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Rootin' Tootin' + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Night Star (set 1) + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Night Star (set 2) + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Pro Soccer + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Pro Bowling + 1983 + DECO + + + + + + + + + + + + + + + + Cassette: Scrum Try (set 1) + 1984 + DECO + + + + + + + + + + + + + + + + Cassette: Scrum Try (set 2) + 1984 + DECO + + + + + + + + + + + + + + + + Cassette: Peter Pepper's Ice Cream Factory (set 1) + 1984 + DECO + + + + + + + + + + + + + + + + Cassette: Peter Pepper's Ice Cream Factory (set 2) + 1984 + DECO + + + + + + + + + + + + + + + + Cassette: Fighting Ice Hockey + 1984 + DECO + + + + + + + + + + + + + + + + Cassette: Boulder Dash + 1985 + DECO + + + + + + + + + + + + + + + Astro Fighter (set 1) + 1979 + Data East + + + + + + + + + + + + + + + + + + + + + + + Astro Fighter (set 2) + 1979 + Data East + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Fighter (set 3) + 1979 + Data East + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tomahawk 777 (Revision 1) + 1980 + Data East + + + + + + + + + + + + + + + Tomahawk 777 (Revision 5) + 1980 + Data East + + + + + + + + + + + + + + + Boomer Rang'r / Genesis + 1983 + Data East Corporation + + + + + + + + + + + + + + + + + Kamikaze Cabbie + 1984 + Data East Corporation + + + + + + + + + + + + + + + + Liberation + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Liberation (bootleg) + 1984 + bootleg + + + + + + + + + + + + + + + + + + + + + + B-Wings (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Battle Wings + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Battle Wings (alternate) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Zaviga + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Zaviga (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Karate Champ (US) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Dou (Japan) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karate Champ (US VS version) + 1984 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Taisen Karate Dou (Japan VS version) + 1984 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fire Trap (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + Fire Trap (Japan bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Clash (Japan) + 1985 + Data East + + + + + + + + + + + + + + + + + Break Thru (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + Kyohkoh-Toppa (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Darwin 4078 (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Shoot Out (US) + 1985 + Data East USA + + + + + + + + + + + + + + + + + + + + Shoot Out (Japan) + 1985 + Data East USA + + + + + + + + + + + + + + + Shoot Out (Korean Bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + + Side Pocket (World) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + Side Pocket (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + Side Pocket (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + Express Raider (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + Western Express (World?) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Western Express (bootleg set 1) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Western Express (bootleg set 2) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Pocket Gal (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + Pocket Gal (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + Pocket Gal 2 (World?) + 1989 + Data East Corporation + + + + + + + + + + + + + + + Super Pool III (World?) + 1989 + Data East Corporation + + + + + + + + + + + + + + + Super Pool III (I-Vics) + 1990 + Data East Corporation (I-Vics license) + + + + + + + + + + + + + + + Battle Rangers (World) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + Bloody Wolf (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (World revision 2) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (World revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Act-Fancer Cybernetick Hyper Weapon (Japan revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Trio The Punch - Never Forget Me... (Japan) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Mission (US revision 6) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + Last Mission (US revision 5) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + Last Mission (Japan) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Shackled (US) + 1986 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breywood (Japan revision 2) + 1986 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Silver (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + The Real Ghostbusters (US 2 Players) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Real Ghostbusters (US 3 Players) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + Meikyuu Hunter G (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Real Darwin (World) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Super Real Darwin (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + Gondomania (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Makyou Senshi (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garyo Retsuden (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cobra-Command (World revision 5) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Cobra-Command (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (Japan revision 2) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (Japan revision 1) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Psycho-Nics Oscar (Japan revision 0) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Karnov (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karnov (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wonder Planet (Japan) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chelnov - Atomic Runner (World) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Chelnov - Atomic Runner (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + Chelnov - Atomic Runner (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Heavy Barrel (US) + 1987 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Heavy Barrel (World) + 1987 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bad Dudes vs. Dragonninja (US) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dragonninja (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Birdie Try (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World revision 4) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World revision 3) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (US revision 1) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (US revision 0) + 1988 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop (World bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hippodrome (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan revision 2) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Fantasy (Japan) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sly Spy (US revision 3) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + Sly Spy (US revision 2) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + Secret Agent (World) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (World) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + Midnight Resistance (Japan) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Boulder Dash / Boulder Dash Part 2 (World) + 1990 + Data East Corporation (licensed from First Star) + + + + + + + + + + + + + + + + + + + + + + + + + + + Boulder Dash / Boulder Dash Part 2 (Japan) + 1990 + Data East Corporation (licensed from First Star) + + + + + + + + + + + + + + + + + + + + + + + + + + + Stadium Hero (Japan) + 1988 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + Mad Motor + 1989 + Mitchell + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vapor Trail - Hyper Offence Formation (World revision 1) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Vapor Trail - Hyper Offence Formation (US) + 1989 + Data East USA + + + + + + + + + + + + + + + + + + + + + Kuhga - Operation Code 'Vapor Trail' (Japan revision 3) + 1989 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + Crude Buster (World FX version) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Crude Buster (World FU version) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Crude Buster (Japan) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + Two Crude (US) + 1990 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + Dark Seal (World revision 3) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Dark Seal (World revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Dark Seal (Japan) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Gate of Doom (US revision 4) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + Gate of Doom (US revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (World revision 2) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (World revision 1) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Cliffhanger - Edward Randy (Japan) + 1990 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Burger Time (World) + 1990 + Data East Corporation + + + + + + + + + + + + + + Super Burger Time (Japan) + 1990 + Data East Corporation + + + + + + + + + + + + + + Mutant Fighter (World Rev 4, EM-5) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mutant Fighter (World Rev 3, EM-4) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Death Brade (Japan Rev 2, JM-3) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caveman Ninja (World revision 3) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caveman Ninja (World revision 0) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caveman Ninja (US) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tatakae Genshizin Joe & Mac (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stoneage + 1991 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (World) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (US) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robocop 2 (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Zone (World) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Desert Assault (US) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Desert Assault (US 4 Players) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + China Town (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + Captain America and The Avengers (Asia Rev 1.9) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (Asia Rev 1.0) + 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.9) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (US Rev 1.6) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain America and The Avengers (Japan Rev 0.2) + 1991 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tumble Pop (World) + 1991 + Data East Corporation + + + + + + + + + + + + + + Tumble Pop (Japan) + 1991 + Data East Corporation + + + + + + + + + + + + + + Tumble Pop (bootleg set 1) + 1991 + bootleg + + + + + + + + + + + + Tumble Pop (bootleg set 2) + 1991 + bootleg + + + + + + + + + + + + Jump Kids + 1993 + Comad + + + + + + + + + + + + + + + + Fancy World - Earth of Crisis + 1996 + Unico + + + + + + + + + + + + + + + + + Lemmings (US Prototype) + 1991 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + Dragon Gun (US) + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wizard Fire (US v1.1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dark Seal 2 (Japan v2.1) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Funky Jet + 1992 + [Data East] (Mitchell license) + + + + + + + + + + + + + + Nitro Ball (US) + 1992 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Locked 'n Loaded (US) + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tattoo Assassins (US Prototype) + 1994 + Data East Pinball + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tattoo Assassins (Asia Prototype) + 1994 + Data East Pinball + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sotsugyo Shousho + 1995 + Mitchell Corporation (Atlus license) + + + + + + + + + + + + + + Super Shanghai Dragon's Eye (Japan) + 1992 + Hot-B + + + + + + + + + + + + + + + Super Shanghai Dragon's Eye (World, bootleg) + 1992 + bootleg + + + + + + + + + + + + + + + Senjyo + 1983 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Force + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + + + + Star Force (encrypted) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Force + 1985 + Tehkan (Video Ware license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Baluba-louk no Densetsu + 1986 + Able Corp, Ltd. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bomb Jack (set 1) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + Bomb Jack (set 2) + 1984 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + + Pinball Action (set 1) + 1985 + Tehkan + + + + + + + + + + + + + + + + + + + + + + Pinball Action (set 2) + 1985 + Tehkan + + + + + + + + + + + + + + + + + + + + + + + Tehkan World Cup + 1985 + Tehkan + + + + + + + + + + + + + + + + + + + + Gridiron Fight + 1985 + Tehkan + + + + + + + + + + + + + + + + + + + + + Tee'd Off (Japan) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + Solomon's Key (Japan) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + Rygar (US set 1) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + Rygar (US set 2) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + Argus no Senshi (Japan) + 1986 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + Gemini Wing + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Silk Worm (set 1) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Silk Worm (set 2) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Bowl (World?) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo Bowl (Japan) + 1987 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Warriors (World set 1) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shadow Warriors (World set 2) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Gaiden (US) + 1988 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Ryukenden (Japan) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wild Fang / Tecmo Knight + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + Tecmo Knight + 1989 + Tecmo + + + + + + + + + + + + + + + + + Raiga - Strato Fighter (US) + 1991 + Tecmo + + + + + + + + + + + + + + + + + + Raiga - Strato Fighter (Japan) + 1991 + Tecmo + + + + + + + + + + + + + + + + + + Tecmo World Cup '90 (set 1) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + + + Tecmo World Cup '90 (set 2) + 1989 + Tecmo + + + + + + + + + + + + + + + + + + + + + + Euro League + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Pinball Action (US) + 1991 + Tecmo + + + + + + + + + + + + + + + + + Super Pinball Action (Japan) + 1991 + Tecmo + + + + + + + + + + + + + + + + + Final Star Force (US) + 1992 + Tecmo + + + + + + + + + + + + + + + + Ganbare Ginkun + 1995 + Tecmo + + + + + + + + + + + + + + + + Tutankham + 1982 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Tutankham (Stern) + 1982 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + + + + + + Juno First + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + Juno First (Gottlieb) + 1983 + Konami (Gottlieb license) + + + + + + + + + + + + + + + + + + + + + + Pooyan + 1982 + Konami + + + + + + + + + + + + + + + + + + + + Pooyan (Stern) + 1982 + [Konami] (Stern license) + + + + + + + + + + + + + + + + + + + + Pootan + 1982 + bootleg + + + + + + + + + + + + + + + + + + + + Time Pilot + 1982 + Konami + + + + + + + + + + + + + + + + + + Time Pilot (Centuri) + 1982 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + Space Pilot + 1982 + bootleg + + + + + + + + + + + + + + + + + + Power Surge + 1988 + <unknown> + + + + + + + + + + + + + + + + + + + Mega Zone + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Mega Zone (Kosuka) + 1983 + Konami / Interlogic + Kosuka + + + + + + + + + + + + + + + + + + + + + + + + + + Pandora's Palace + 1984 + Konami/Interlogic + + + + + + + + + + + + + + + + + + + + + + + + Gyruss (Konami) + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gyruss (Centuri) + 1983 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + Venus + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Track & Field + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + Track & Field (Centuri) + 1983 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Olympic + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Olympic (bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Masters of Kin + 1988 + Du Tech + + + + + + + + + + + + + + + + + + + + + + + Roc'n Rope + 1983 + Konami + + + + + + + + + + + + + + + + + + + + + + + Roc'n Rope (Kosuka) + 1983 + Konami + Kosuka + + + + + + + + + + + + + + + + + + + + + + + Circus Charlie + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Circus Charlie (no level select) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Circus Charlie (Centuri) + 1984 + Konami (Centuri licence) + + + + + + + + + + + + + + + + + + + + + + + + + + Circus Charlie (Centuri, earlier) + 1984 + Konami (Centuri licence) + + + + + + + + + + + + + + + + + + + + + + + + + + Time Pilot '84 (set 1) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Time Pilot '84 (set 2) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Sports + 1984 + Konami (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Olympics '84 + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Basketball (version G) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Basketball (version E) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Basketball (not encrypted) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + Mikie + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Shinnyuushain Tooru-kun + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Mikie (High School Graffiti) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + Road Fighter (set 1) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Road Fighter (set 2) + 1984 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Yie Ar Kung-Fu (set 1) + 1985 + Konami + + + + + + + + + + + + + + + + Yie Ar Kung-Fu (set 2) + 1985 + Konami + + + + + + + + + + + + + + + + Kicker + 1985 + Konami + + + + + + + + + + + + + + + + + + Shao-Lin's Road + 1985 + Konami + + + + + + + + + + + + + + + + + + Ping Pong + 1985 + Konami + + + + + + + + + + + + Green Beret + 1985 + Konami + + + + + + + + + + + + + + + + Rush'n Attack + 1985 + Konami + + + + + + + + + + + + + + + + Green Beret (bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + Mr. Goemon (Japan) + 1986 + Konami + + + + + + + + + + + + + Jail Break + 1986 + Konami + + + + + + + + + + + + + + + + + + + Manhattan 24 Bunsyo (Japan) + 1986 + Konami + + + + + + + + + + + + + + + + + + + Finalizer - Super Transformation + 1985 + Konami + + + + + + + + + + + + + + + + + + + + + Finalizer - Super Transformation (bootleg) + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + Iron Horse + 1986 + Konami + + + + + + + + + + + + + + + + + + Dai Ressya Goutou (Japan) + 1986 + [Konami] (Kawakusu license) + + + + + + + + + + + + + + + + + + Far West + 1986 + bootleg? + + + + + + + + + + + + + + + + + + + + + Jackal (World) + 1986 + Konami + + + + + + + + + + + + + + + Top Gunner (US) + 1986 + Konami + + + + + + + + + + + + + + + Tokushu Butai Jackal (Japan) + 1986 + Konami + + + + + + + + + + + + + + + Top Gunner (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + Double Dribble + 1986 + Konami + + + + + + + + + + + + + + + + + + + Contra (US) + 1987 + Konami + + + + + + + + + + + + + + + + + Contra (US bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + Contra (Japan) + 1987 + Konami + + + + + + + + + + + + + + + + + Contra (Japan bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + Gryzor + 1987 + Konami + + + + + + + + + + + + + + + + + Combat School (joystick) + 1988 + Konami + + + + + + + + + + + + + + + + + + + Combat School (trackball) + 1987 + Konami + + + + + + + + + + + + + + + + + + + Combat School (Japan trackball) + 1987 + Konami + + + + + + + + + + + + + + + + + + + Boot Camp + 1987 + Konami + + + + + + + + + + + + + + + + + + + Combat School (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rock 'n Rage (World?) + 1986 + Konami + + + + + + + + + + + + + + + + + + Koi no Hotrock (Japan) + 1986 + Konami + + + + + + + + + + + + + + + + + + MX5000 + 1987 + Konami + + + + + + + + + + + Flak Attack (Japan) + 1987 + Konami + + + + + + + + + + + Fast Lane + 1987 + Konami + + + + + + + + + + + + Trick Trap (World?) + 1987 + Konami + + + + + + + + + + + + + Labyrinth Runner (Japan) + 1987 + Konami + + + + + + + + + + Labyrinth Runner (World Ver. K) + 1987 + Konami + + + + + + + + + + + + + The Hustler (Japan version M) + 1987 + Konami + + + + + + + + + + + + The Hustler (Japan version J) + 1987 + Konami + + + + + + + + + + + + Rack 'em Up + 1987 + Konami + + + + + + + + + + + + Battlantis + 1987 + Konami + + + + + + + + + + + + Battlantis (Japan) + 1987 + Konami + + + + + + + + + + + + Blades of Steel (version T) + 1987 + Konami + + + + + + + + + + + + + + Blades of Steel (version E) + 1987 + Konami + + + + + + + + + + + + + + Haunted Castle (version M) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + Haunted Castle (version K) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + Akuma-Jou Dracula (Japan version P) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + Akuma-Jou Dracula (Japan version N) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + Ajax + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + Typhoon + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + Ajax (Japan) + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + Super Contra + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Contra (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Thunder Cross (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + The Main Event (4 Players ver. Y) + 1988 + Konami + + + + + + + + + + + + + + + + + + The Main Event (4 Players ver. F) + 1988 + Konami + + + + + + + + + + + + + + + + + + The Main Event (2 Players ver. X) + 1988 + Konami + + + + + + + + + + + + + + + + + + Ring no Ohja (Japan 2 Players ver. N) + 1988 + Konami + + + + + + + + + + + + + + + + + + Devastators (ver. Z) + 1988 + Konami + + + + + + + + + + + + + + + + + Devastators (ver. X) + 1988 + Konami + + + + + + + + + + + + + + + + + Devastators (ver. V) + 1988 + Konami + + + + + + + + + + + + + + + + + Garuka (Japan ver. W) + 1988 + Konami + + + + + + + + + + + + + + + + + '88 Games + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Konami '88 + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Sports Special (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gang Busters + 1988 + Konami + + + + + + + + + + + + + + + + Crazy Cop (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + Crime Fighters (US 4 players) + 1989 + Konami + + + + + + + + + + + + + + + Crime Fighters (World 2 Players) + 1989 + Konami + + + + + + + + + + + + + + + Crime Fighters (Japan 2 Players) + 1989 + Konami + + + + + + + + + + + + + + + S.P.Y. - Special Project Y (World ver. N) + 1989 + Konami + + + + + + + + + + + + + + + + + + S.P.Y. - Special Project Y (US ver. M) + 1989 + Konami + + + + + + + + + + + + + + + + + + Bottom of the Ninth (version T) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bottom of the Ninth (version N) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Main Stadium (Japan) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Block Hole + 1989 + Konami + + + + + + + + + + + + + + + + + Quarth (Japan) + 1989 + Konami + + + + + + + + + + + + + + + + + Aliens (World set 1) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + Aliens (World set 2) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + Aliens (US) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + Aliens (Japan) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + Surprise Attack (Japan ver. M) + 1990 + Konami + + + + + + + + + + + Parodius DA! (Japan) + 1990 + Konami + + + + + + + + + + + + + + + Rollergames (US) + 1991 + Konami + + + + + + + + + + + + + + Rollergames (Japan) + 1991 + Konami + + + + + + + + + + + + + + The Simpsons (4 Players) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + The Simpsons (2 Players) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + The Simpsons (2 Players Japan) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + Escape Kids (Japan 2 Players) + 1991 + Konami + + + + + + + + + + + + + + + + Vendetta (World 4 Players ver. T) + 1991 + Konami + + + + + + + + + + + + + + + + Vendetta (World 4 Players ver. R) + 1991 + Konami + + + + + + + + + + + + + + + + Vendetta (World 2 Players ver. W) + 1991 + Konami + + + + + + + + + + + + + + + + Vendetta (Asia 2 Players ver. U) + 1991 + Konami + + + + + + + + + + + + + + + + Vendetta (Asia 2 Players ver. D) + 1991 + Konami + + + + + + + + + + + + + + + + Crime Fighters 2 (Japan 2 Players ver. P) + 1991 + Konami + + + + + + + + + + + + + + + + WEC Le Mans 24 + 1986 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hot Chase + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chequered Flag + 1988 + Konami + + + + + + + + + + + + + + + + + + + + Chequered Flag (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + Ultraman (Japan) + 1991 + Banpresto/Bandai + + + + + + + + + + + + + + + + + + + + + + + + + + Hexion (Japan) + 1992 + Konami + + + + + + + + + + + + + Nemesis + 1985 + Konami + + + + + + + + + + + + + + + + + + + + Nemesis (World?) + 1985 + Konami + + + + + + + + + + + + + + + + + + + + Konami GT + 1985 + Konami + + + + + + + + + + + + + + + + + + + Salamander (version D) + 1986 + Konami + + + + + + + + + + + + + + + Salamander (version J) + 1986 + Konami + + + + + + + + + + + + + + + Lifeforce (US) + 1986 + Konami + + + + + + + + + + + + + + + Lifeforce (Japan) + 1986 + Konami + + + + + + + + + + + + + + + Black Panther + 1987 + Konami + + + + + + + + + + + + + City Bomber (World) + 1987 + Konami + + + + + + + + + + + + + + + + + + City Bomber (Japan) + 1987 + Konami + + + + + + + + + + + + + + + + + + Kitten Kaboodle + 1988 + Konami + + + + + + + + + + + + + + Nyan Nyan Panic (Japan) + 1988 + Konami + + + + + + + + + + + + + + Konami RF2 - Red Fighter + 1985 + Konami + + + + + + + + + + + + + + + + TwinBee + 1985 + Konami + + + + + + + + + + + + + + + + Gradius + 1985 + Konami + + + + + + + + + + + + + + + + Galactic Warriors + 1985 + Konami + + + + + + + + + + + + + + + + Devil World + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Dark Adventure + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Majuu no Ohkoku + 1987 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Vulcan Venture + 1988 + 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 + + + + + + + + + + + + + + + + + + + + + + + + + CueBrick + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + The Final Round (version M) + 1988 + Konami + + + + + + + + + + + + + + + + + + The Final Round (version L) + 1988 + Konami + + + + + + + + + + + + + + + + + + Hard Puncher (Japan) + 1988 + Konami + + + + + + + + + + + + + + + + + + + + + + + Missing in Action (Japan) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + Missing in Action (version T) + 1989 + Konami + + + + + + + + + + + + + + + + + + Missing in Action (version S) + 1989 + Konami + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (World 4 Players) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (US 4 Players) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 4 Players) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Japan 4 Players) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Hero Turtles (UK 2 Players) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Japan 2 Players) + 1990 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles (Oceania 2 Players) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Punk Shot (US 4 Players) + 1990 + Konami + + + + + + + + + + + + + + + Punk Shot (US 2 Players) + 1990 + Konami + + + + + + + + + + + + + + + Punk Shot (Japan 2 Players) + 1990 + Konami + + + + + + + + + + + + + + + Lightning Fighters (US) + 1990 + Konami + + + + + + + + + + + + + + + Trigon (Japan) + 1990 + Konami + + + + + + + + + + + + + + + Bells & Whistles (Version L) + 1991 + Konami + + + + + + + + + + + + + + + + + Detana!! Twin Bee (Japan ver. J) + 1991 + Konami + + + + + + + + + + + + + + + + + Golfing Greats + 1991 + Konami + + + + + + + + + + + + + + + + + + + + Golfing Greats (Japan) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (US 4 Players ver. UAA) + 1991 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (US 2 Players ver. UDA) + 1991 + Konami + + + + + + + + + + + + + + + + + + + Teenage Mutant Ninja Turtles - Turtles in Time (Asia 4 Players ver. ADA) + 1991 + Konami + + + + + + + + + + + + + + + + + + + Sunset Riders (World 4 Players ver. EAC) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (World 2 Players ver. EBD) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (World 2 Players ver. EBC) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (US 4 Players ver. UDA) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (US 4 Players ver. UAC) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (US 2 Players ver. UBC) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (Asia 2 Players ver. ABD) + 1991 + Konami + + + + + + + + + + + + + + + + + Sunset Riders (Japan 2 Players ver. JBD) + 1991 + Konami + + + + + + + + + + + + + + + + + X-Men (US 4 Players) + 1992 + Konami + + + + + + + + + + + + + + + + + + + X-Men (World 2 Players) + 1992 + Konami + + + + + + + + + + + + + + + + + + + X-Men (Japan 2 Players) + 1992 + Konami + + + + + + + + + + + + + + + + + + + Xexex (World) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + + Xexex (Japan) + 1991 + Konami + + + + + + + + + + + + + + + + + + + + + Asterix (World ver. EAD) + 1992 + Konami + + + + + + + + + + + + + + + + + Asterix (World ver. EAC) + 1992 + Konami + + + + + + + + + + + + + + + + + Asterix (World ver. EAA) + 1992 + Konami + + + + + + + + + + + + + + + + + GI Joe (World) + 1992 + Konami + + + + + + + + + + + + + + + + + + + GI Joe (US) + 1992 + Konami + + + + + + + + + + + + + + + + + + + GI Joe (Japan) + 1992 + Konami + + + + + + + + + + + + + + + + + + + Thunder Cross II (Japan) + 1991 + Konami + + + + + + + + + + + + + + + Thunder Cross II (Asia) + 1991 + Konami + + + + + + + + + + + + + + + Premier Soccer (Japan ver. JAB) + 1993 + Konami + + + + + + + + + + + + + + + + + Quiz Gakumon no Susume (Japan ver. JA2 Type L) + 1993 + Konami + + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (World version EA) + 1992 + Konami + + + + + + + + + + + + + + + + + + + Wild West C.O.W.-Boys of Moo Mesa (US version UA) + 1992 + Konami + + + + + + + + + + + + + + + + + + + Bucky O'Hare (World version EA) + 1992 + Konami + + + + + + + + + + + + + + + + + + + + Bucky O'Hare (US version UA) + 1992 + Konami + + + + + + + + + + + + + + + + + + + + Gaiapolis (Japan ver JAF) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + Mystic Warriors (World ver EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Mystic Warriors (US ver UAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Violent Storm (Europe ver EAB) + 1993 + Konami + + + + + + + + + + + + + + + + + + Violent Storm (US ver UAB) + 1993 + Konami + + + + + + + + + + + + + + + + + + Violent Storm (Japan ver JAC) + 1993 + Konami + + + + + + + + + + + + + + + + + + Violent Storm (Asia ver AAC) + 1993 + Konami + + + + + + + + + + + + + + + + + + Kyukyoku Sentai Dadandarn (Japan ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metamorphic Force (US ver UAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + Metamorphic Force (Japan ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + Martial Champion (Japan ver JAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + + + + Run and Gun (World ver. EAA) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Run and Gun (US ver. UAB) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Slam Dunk (Japan ver. JAA)) + 1993 + Konami + + + + + + + + + + + + + + + + + + + + Dragonball Z + 1993 + Banpresto + + + + + + + + + + + + + + + + + + + + + Dragonball Z 2 Super Battle + 1994 + Banpresto + + + + + + + + + + + + + + + + + + + + + Over Drive + 1990 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (Japan) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (Asia) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gradius III (World ?) + 1989 + Konami + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Lethal Enforcers II: Gun Fighters (Ver EAA) + 1994 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Lethal Enforcers II: Gun Fighters (Ver UAA) + 1994 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Taisen Puzzle-dama (Ver JAA) + 1994 + Konami + + + + + + + + + + + + + + + + + + + Gokujyou Parodius (Ver JAD) + 1994 + Konami + + + + + + + + + + + + + + + + + + + Fantastic Journey + 1994 + Konami + + + + + + + + + + + + + + + + + + + Dragoon Might (Ver JAA) + 1995 + Konami + + + + + + + + + + + + + + + + + + + + + + + + Twin Bee Yahhoo! (Ver JAA) + 1995 + Konami + + + + + + + + + + + + + + + + + + + Tokimeki Memorial Taisen Puzzle-dama (version JAB) + 1995 + Konami + + + + + + + + + + + + + + + + + + + + + Salamander 2 (JAA) + 1996 + Konami + + + + + + + + + + + + + + + + + + + + Sexy Parodius (Ver JAA) + 1996 + Konami + + + + + + + + + + + + + + + + + + + Daisu-Kiss (Ver JAA) + 1996 + Konami + + + + + + + + + + + + + + + + + + Taisen Tokkae-dama (Ver JAA) + 1996 + Konami + + + + + + + + + + + + + + + + + + + + + Car Polo + 1977 + Exidy + + + + + + + + + + + + + + + + + + + + + + Side Track + 1979 + Exidy + + + + + + + + + + + + + + + + + Targ + 1980 + Exidy + + + + + + + + + + + + + + + + + + Targ (cocktail?) + 1980 + Exidy + + + + + + + + + + + + + + + + + + Spectar (revision 3) + 1980 + Exidy + + + + + + + + + + + + + + + + + + + Spectar (revision 1?) + 1980 + Exidy + + + + + + + + + + + + + + + + + + + + Rallys (bootleg?) + 1980 + Novar + + + + + + + + + + + + + + + + + + + + + + + + Venture (version 5 set 1) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + Venture (version 5 set 2) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + Venture (version 4) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + Mouse Trap (version 5) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + + + Mouse Trap (version 3) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + + + Mouse Trap (version 4) + 1981 + Exidy + + + + + + + + + + + + + + + + + + + + + + Pepper II + 1982 + Exidy + + + + + + + + + + + + + + + + + Hard Hat + 1982 + Exidy + + + + + + + + + + + + + + + + Fax + 1983 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Circus + 1977 + Exidy + + + + + + + + + + + + + + + + + + + + + + Robot Bowl + 1977 + Exidy + + + + + + + + + + + + + + + + + + Crash + 1979 + Exidy + + + + + + + + + + + + + + + + + + Rip Cord + 1977 + Exidy + + + + + + + + + + + + + + + + + + Star Fire (set 1) + 1979 + Exidy + + + + + + + + + + + + + + + Star Fire (set 2) + 1979 + Exidy + + + + + + + + + + + + + + Fire One + 1979 + Exidy + + + + + + + + + + + + + + + + + + Victory + 1982 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Victor Banana + 1982 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crossbow (version 2.0) + 1983 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cheyenne (version 1.0) + 1984 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Combat (version 3.0) + 1985 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Catch-22 (version 8.0) + 1985 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crackshot (version 2.0) + 1985 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Clay Pigeon (version 2.0) + 1986 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chiller (version 3.0) + 1986 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Secret (Exidy) (version 1.0) + 1986 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hit 'n Miss (version 3.0) + 1987 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hit 'n Miss (version 2.0) + 1987 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Who Dunit (version 8.0) + 1988 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Showdown (version 5.0) + 1988 + Exidy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cops'n Robbers + 1976 + Atari + + + + + + + + + + + + + + + + + + + + + + Flyball + 1976 + Atari + + + + + + + + + + + + + + + + + + Sprint 2 + 1976 + Atari + + + + + + + + + + + + + + Night Driver + 1976 + Atari + + + + + + + + + Dominos + 1977 + Atari + + + + + + + + + Triple Hunt + 1977 + Atari + + + + + + + + + + + + + + + + Drag Race + 1977 + Atari + + + + + + + + + + + + + + Poolshark + 1977 + Atari + + + + + + + + + + Starship 1 + 1977 + Atari + + + + + + + + + + + + + + + Starship 1 (prototype?) + 1977 + Atari + + + + + + + + + + + + + + + + + + + + + Super Bug + 1977 + Atari + + + + + + + + + + + + + + + Canyon Bomber + 1977 + Atari + + + + + + + + + + Canyon Bomber (prototype) + 1977 + Atari + + + + + + + + + + + + + Destroyer + 1977 + Atari + + + + + + + + + + + Sprint 1 + 1978 + Atari + + + + + + + + + + + + + + Ultra Tank + 1978 + Atari + + + + + + + + + + + + + + + Sky Raider + 1978 + Atari + + + + + + + + + + + + + + + Tournament Table (set 1) + 1978 + Atari + + + + + + + + Tournament Table (set 2) + 1978 + Atari + + + + + + + + Avalanche + 1978 + Atari + + + + + + + + + + + Fire Truck + 1978 + Atari + + + + + + + + + + + + + + + + + Sky Diver + 1978 + Atari + + + + + + + + + + + Super Breakout + 1978 + Atari + + + + + + + + + + + + + Atari Football (revision 2) + 1978 + Atari + + + + + + + + + + + Atari Football (revision 1) + 1978 + Atari + + + + + + + + + + + Orbit + 1978 + Atari + + + + + + + + + + + + + + + + + + + + + Wolf Pack (prototype) + 1978 + Atari + + + + + + + + + + + + + + + Video Pinball + 1979 + Atari + + + + + + + + + + + + + + + + + + + + + + + + Atari Football (4 players) + 1979 + Atari + + + + + + + + + + + + + + + + + + + + + + + + Subs + 1977 + Atari + + + + + + + + + + + + + + + Basketball + 1979 + Atari + + + + + + + + + + + Atari Baseball (set 1) + 1979 + Atari + + + + + + + + + + + + Atari Baseball (set 2) + 1979 + Atari + + + + + + + + + + + + + + + + + + + + + + + + Monte Carlo + 1979 + Atari + + + + + + + + + + + + + + + Atari Soccer + 1980 + Atari + + + + + + + + + + + + + + + + + + + + + + + + + Missile Command (set 1) + 1980 + Atari + + + + + + + + + + + Missile Command (set 2) + 1980 + Atari + + + + + + + + + + + Super Missile Attack + 1981 + Atari + Gencomp + + + + + + + + + + + Lunar Lander (rev 2) + 1979 + Atari + + + + + + + + + + + + Lunar Lander (rev 1) + 1979 + Atari + + + + + + + + + + + + Asteroids (rev 2) + 1979 + Atari + + + + + + + + + Asteroids (rev 1) + 1979 + Atari + + + + + + + + + Asteroids (bootleg on Lunar Lander hardware) + 1979 + bootleg + + + + + + + + + Asteroids Deluxe (rev 2) + 1980 + Atari + + + + + + + + + + + + Asteroids Deluxe (rev 1) + 1980 + Atari + + + + + + + + + + + + Battle Zone (set 1) + 1980 + Atari + + + + + + + + + + + + + + Battle Zone (set 2) + 1980 + Atari + + + + + + + + + + + + + + Battle Zone (cocktail) + 1980 + Atari + + + + + + + + + + + + + + + Bradley Trainer + 1980 + Atari + + + + + + + + + + + + + + + + Red Baron + 1980 + Atari + + + + + + + + + + + + + + Tempest (rev 3) + 1980 + Atari + + + + + + + + + + + + + + + + + + Tempest (rev 1) + 1980 + Atari + + + + + + + + + + + + + + + + + + Tempest (rev 2) + 1980 + Atari + + + + + + + + + + + + + + + + + + Tempest Tubes + 1980 + hack + + + + + + + + + + + + + + + + + + Space Duel + 1980 + Atari + + + + + + + + + + + + + Gravitar (version 3) + 1982 + Atari + + + + + + + + + + + + + + + + Gravitar (version 2) + 1982 + Atari + + + + + + + + + + + + + + + + Gravitar (prototype) + 1982 + Atari + + + + + + + + + + + + + + + + Lunar Battle (prototype) + 1982 + Atari + + + + + + + + + + + + + + Quantum (rev 2) + 1982 + Atari + + + + + + + + + + + + + + + + Quantum (rev 1) + 1982 + Atari + + + + + + + + + + + + + + + + Quantum (prototype) + 1982 + Atari + + + + + + + + + + + + + + + + Black Widow + 1982 + Atari + + + + + + + + + + + + + + + + Star Wars (rev 2) + 1983 + Atari + + + + + + + + + + + + + + + + + + + + + + Star Wars (rev 1) + 1983 + Atari + + + + + + + + + + + + + + + + + + + + + + Major Havoc (rev 3) + 1983 + Atari + + + + + + + + + + + + + + + + + Major Havoc (rev 2) + 1983 + Atari + + + + + + + + + + + + + + + + + Major Havoc (prototype) + 1983 + Atari + + + + + + + + + + + + + + + + + Major Havoc (Return to Vax) + 1983 + hack + + + + + + + + + + + + + + + + + Alpha One (prototype, 3 lives) + 1983 + Atari + + + + + + + + + + + + + + Alpha One (prototype, 5 lives) + 1983 + Atari + + + + + + + + + + + + + + The Empire Strikes Back + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Warlords + 1980 + Atari + + + + + + + + + + + + + Centipede (revision 3) + 1980 + Atari + + + + + + + + + + + Centipede (revision 2) + 1980 + Atari + + + + + + + + + + + Centipede (1 player, timed) + 1980 + Atari + + + + + + + + + + + Centipede (bootleg set 1) + 1980 + bootleg + + + + + + + + + + + Centipede (bootleg set 2) + 1980 + bootleg + + + + + + + + + + + + Millpac + 1980 + Valadon + + + + + + + + + + + + Magic Worm (bootleg) + 1980 + bootleg + + + + + + + + + + + Millipede + 1982 + Atari + + + + + + + + + + + + Qwak (prototype) + 1982 + Atari + + + + + + + + + + + + + + Tunnel Hunt + 1979 + Atari + + + + + + + + + + + + + + + + + + + Tunnel Hunt (Centuri) + 1981 + Atari (Centuri license) + + + + + + + + + + + + + + + + + + + Liberator (set 1) + 1982 + Atari + + + + + + + + + + + + + + + + + Food Fight + 1982 + Atari + + + + + + + + + + + + + + + + + + Crystal Castles (version 4) + 1983 + Atari + + + + + + + + + + + + + Crystal Castles (version 3) + 1983 + Atari + + + + + + + + + + + + + Crystal Castles (version 2) + 1983 + Atari + + + + + + + + + + + + + Cloak & Dagger + 1983 + Atari + + + + + + + + + + + + + + + + + + + + + + Cloud 9 (prototype) + 1983 + Atari + + + + + + + + + + + + + + + Return of the Jedi + 1984 + Atari + + + + + + + + + + + + + + + + + + + + + + + + + + Peter Pack-Rat + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marble Madness (set 1) + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marble Madness (set 2) + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marble Madness (set 3) + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Marble Madness (set 4) + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indiana Jones and the Temple of Doom (set 1) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indiana Jones and the Temple of Doom (set 2) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indiana Jones and the Temple of Doom (set 3) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indiana Jones and the Temple of Doom (set 4) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Indiana Jones and the Temple of Doom (German) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Road Runner + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Road Blasters (set 1) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Road Blasters (set 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Paperboy + 1984 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sprint + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Championship Sprint + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 720 Degrees (set 1) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 720 Degrees (set 2) + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + APB - All Points Bulletin (set 1) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + APB - All Points Bulletin (set 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + I, Robot + 1983 + Atari + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hard Drivin' (cockpit) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hard Drivin' (compact) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + S.T.U.N. Runner + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + S.T.U.N. Runner (upright prototype) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Race Drivin' (cockpit) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Race Drivin' (cockpit, rev 3) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Race Drivin' (compact) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Talons + 1991 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Steel Talons (prototype) + 1991 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hard Drivin's Airborne (prototype) + 1993 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hard Drivin's Airborne (prototype, early rev) + 1993 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (Intermediate Release 1) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (Intermediate Release 2) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet (2 Players) + 1985 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + Gauntlet II + 1986 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vindicators Part II + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xybots + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + Blasteroids (version 4) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (version 2) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blasteroids (with heads) + 1987 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vindicators (4/26/88) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Vindicators (4/20/88) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + Toobin' (version 3) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (version 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toobin' (prototype) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberball (Version 4) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberball (Version 2) + 1988 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tetris (Cocktail set 1) + 1989 + Atari Games + + + + + + + + Tetris (Cocktail set 2) + 1989 + Atari Games + + + + + + + + Tetris (set 1) + 1988 + Atari Games + + + + + + + + Tetris (set 2) + 1988 + Atari Games + + + + + + + + Tetris (bootleg) + 1988 + bootleg + + + + + + + + + Escape from the Planet of the Robot Monsters (set 1) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Escape from the Planet of the Robot Monsters (set 2) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skull & Crossbones (set 1) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Skull & Crossbones (set 2) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tournament Cyberball 2072 + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bad Lands + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + Klax (set 1) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (set 2) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (set 3) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (Japan) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (Germany) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (prototype set 1) + 1989 + Atari Games + + + + + + + + + + + + + + + + + Klax (prototype set 2) + 1989 + Atari Games + + + + + + + + + + + + + + + + + ThunderJaws + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyberball 2072 (2 player) + 1989 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hydra + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hydra (prototype 5/14/90) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hydra (prototype 5/25/90) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pit Fighter (version 4) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pit Fighter (version 3) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pit Fighter (bootleg) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rampart (3-player Trackball) + 1990 + Atari Games + + + + + + + + + + + + + Rampart (2-player Joystick) + 1990 + Atari Games + + + + + + + + + + + + + Rampart (Japan, 2-player Joystick) + 1990 + Atari Games + + + + + + + + + + + + + + + + + Shuuz (version 8.0) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + Shuuz (version 7.1) + 1990 + Atari Games + + + + + + + + + + + + + + + + + + + + + Batman + 1991 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Off the Wall (2/3-player upright) + 1991 + Atari Games + + + + + + + + + + + + + + + Off the Wall (2-player cocktail) + 1991 + Atari Games + + + + + + + + + + + + + + + Relief Pitcher (set 1) + 1992 + Atari Games + + + + + + + + + + + + + + + + + Relief Pitcher (set 2) + 1992 + Atari Games + + + + + + + + + + + + + + + + + Arcade Classics (prototype) + 1992 + Atari Games + + + + + + + + + Sparkz (prototype) + 1992 + Atari Games + + + + + + + + Road Riot's Revenge (prototype) + 1994 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BeatHead (prototype) + 1993 + Atari Games + + + + + + + + + + + + + + + + + + + + Primal Rage (version 2.3) + 1994 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Primal Rage (version 1.7) + 1994 + Atari Games + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Area 51 + 1995 + Atari Games + + + + + + + + + + + + + Area 51 / Maximum Force Duo + 1998 + Atari Games + + + + + + + + + + + + + Maximum Force + 1996 + Atari Games + + + + + + + + + + + + + Vicious Circle (prototype) + 1996 + Atari Games + + + + + + + + + + + + + Sasuke vs. Commander + 1980 + SNK + + + + + + + + + + + + + + + + + + Satan of Saturn + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + Zarzon + 1981 + [SNK] (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + Vanguard (SNK) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard (Centuri) + 1981 + SNK (Centuri license) + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy (US) + 1981 + [SNK] (Rock-ola license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Fantasy (Japan) + 1981 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + Pioneer Balloon + 1982 + SNK + + + + + + + + + + + + + + + + + + + + + + Nibbler (set 1) + 1982 + Rock-ola + + + + + + + + + + + + + + + + + + + + + + + + Nibbler (set 2) + 1982 + Rock-ola + + + + + + + + + + + + + + + + + + + + + + + + Lasso + 1982 + SNK + + + + + + + + + + + + + + + + + + Chameleon + 1983 + Jaleco + + + + + + + + + + + + + + + + + + Wai Wai Jockey Gate-In! + 1984 + Jaleco / Casio + + + + + + + + + + + + + + + + + + + Pinbo + 1984 + Jaleco + + + + + + + + + + + + + + + + + + Pinbo (Strike) + 1984 + bootleg? + + + + + + + + + + + + + + + + + + Joyful Road (Japan) + 1983 + SNK + + + + + + + + + + + + + + + + + + + Munch Mobile (US) + 1983 + SNK (Centuri license) + + + + + + + + + + + + + + + + + + + Marvin's Maze + 1983 + SNK + + + + + + + + + + + + + + + + + + + + + + + + Mad Crasher + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + Vanguard II + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + Gladiator 1984 + 1984 + SNK + + + + + + + + + + + + + + + + + + + + + + + HAL21 + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + HAL21 (Japan) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + ASO - Armored Scrum Object + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + T.N.K. III (US) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + + T.A.N.K. (Japan) + 1985 + SNK + + + + + + + + + + + + + + + + + + + + + + + + Athena + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + Fighting Golf (World?) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + Fighting Golf (US) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + Country Club + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + Ikari Warriors (US) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari (Japan) + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari (Japan bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Victory Road + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dogou Souken + 1986 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guevara (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (Version 1) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Guerrilla War (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (Japan old version) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bermuda Triangle (US older version) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Wars (World) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Psycho Soldier (US) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Psycho Soldier (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US set 1) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US set 2) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chopper I (US set 3) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Koukuu Kihei Monogatari - The Legend of Air Cavalry (Japan) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fighting Soccer + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + TouchDown Fever + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TouchDown Fever (Japan) + 1987 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ikari III - The Rescue + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + P.O.W. - Prisoners of War (US) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Datsugoku - Prisoners of War (Japan) + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SAR - Search And Rescue (World) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + SAR - Search And Rescue (US) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + Street Smart (US version 2) + 1989 + SNK + + + + + + + + + + + + + + + + + + + Street Smart (US version 1) + 1989 + SNK + + + + + + + + + + + + + + + + + + + Street Smart (World version 1) + 1989 + SNK + + + + + + + + + + + + + + + + + + + Street Smart (Japan version 1) + 1989 + SNK + + + + + + + + + + + + + + + + + + + Prehistoric Isle in 1930 (World) + 1989 + SNK + + + + + + + + + + + + + + + + + Prehistoric Isle in 1930 (US) + 1989 + SNK of America + + + + + + + + + + + + + + + + + Genshi-Tou 1930's + 1989 + SNK + + + + + + + + + + + + + + + + + Mechanized Attack (World) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + Beast Busters (World ?) + 1989 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + Champion Baseball + 1983 + Sega + + + + + + + + + + + + + + + + + Champion Baseball (Japan) + 1983 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + Exciting Soccer + 1983 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Exciting Soccer (alternate music) + 1983 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Exciting Soccer (bootleg) + 1983 + bootleg + + + + + + + + + + + + + + + + + + + + + Exciting Soccer II + 1984 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Equites + 1984 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Equites (Sega) + 1984 + Alpha Denshi Co. (Sega license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bull Fighter + 1984 + Alpha Denshi Co. (Sega license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Koukouyakyuh + 1985 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Splendor Blast + 1985 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + High Voltage + 1985 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Stingray + 1986 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyros + 1987 + World Games Inc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kyros No Yakata (Japan) + 1986 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Paddle Mania + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + Time Soldiers (US Rev 3) + 1987 + [Alpha Denshi Co.] (SNK/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Time Soldiers (US Rev 1) + 1987 + [Alpha Denshi Co.] (SNK/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Field (Japan) + 1987 + [Alpha Denshi Co.] (SNK license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Soldiers (US) + 1988 + [Alpha Denshi Co.] (SNK of America/Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gold Medalist + 1988 + SNK + + + + + + + + + + + + + + + + + + + + + + Sky Adventure (World) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + Sky Adventure (US) + 1989 + Alpha Denshi Co. (SNK of America license) + + + + + + + + + + + + + + + + + + + Sky Adventure (Japan) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + Gang Wars (US) + 1989 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gang Wars (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Champion Baseball (US) + 1989 + Alpha Denshi Co. (SNK of America license) + + + + + + + + + + + + + + + + + + + The Next Space + 1989 + SNK + + + + + + + + + + + + + + + + Scrambled Egg + 1983 + Technos + + + + + + + + + + + + + + + + + + + Eggs + 1983 + [Technos] Universal USA + + + + + + + + + + + + + + + + + + + Dommy + Technos + + + + + + + + + + + + + + The Big Pro Wrestling! + 1983 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tag Team Wrestling + 1983 + Technos (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Syusse Oozumou (Japan) + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mysterious Stones (set 1) + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + Mysterious Stones (set 2) + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + Dog-Fight + 1984 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bogey Manor + Technos Japan + + + + + + + + + + + + + + + + + + + Mat Mania + 1985 + Technos (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Exciting Hour + 1985 + Technos (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mania Challenge (set 1) + 1986 + Technos (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mania Challenge (set 2) + 1986 + Technos (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Renegade (US) + 1986 + Technos (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nekketsu Kouha Kunio-kun (Japan) + 1986 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nekketsu Kouha Kunio-kun (Japan bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xain'd Sleena + 1986 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Xain'd Sleena (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Solar-Warrior + 1986 + [Technos] Taito (Memetron license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Lane Vol. 5 (set 1) + 1986 + Technos (Taito license) + + + + + + + + + + + + + + + + Battle Lane Vol. 5 (set 2) + 1986 + Technos (Taito license) + + + + + + + + + + + + + + + + Battle Lane Vol. 5 (set 3) + 1986 + Technos (Taito license) + + + + + + + + + + + + + + + + Double Dragon (Japan) + 1987 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (US) + 1987 + [Technos] (Taito America license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Dodge Ball (US) + 1987 + Technos + + + + + + + + + + + + + + + + + + + Nekketsu Koukou Dodgeball Bu (Japan bootleg) + 1987 + Technos + + + + + + + + + + + + + + + + + + + + + + + China Gate (US) + 1988 + [Technos] (Taito Romstar license) + + + + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan) + 1988 + Technos + + + + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan bootleg 1) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sai Yu Gou Ma Roku (Japan bootleg 2) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + WWF Superstars (US) + 1989 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + U.S. Championship V'ball (set 1) + 1988 + Technos + + + + + + + + + + + + + + + + + + + + + + + + U.S. Championship V'ball (Japan) + 1988 + Technos + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (World) + 1988 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon II - The Revenge (US) + 1988 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + Toffy + 1993 + Midas + + + + + + + + + + + + + Super Toffy + 1994 + Midas (Unico license) + + + + + + + + + + + + + Dark Tower + Game Room + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Combatribes (US) + 1990 + Technos + + + + + + + + + + + + + + + + + + + + + + + + The Combatribes (bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + Block Out (set 1) + 1989 + Technos + California Dreams + + + + + + + + + + + + Block Out (set 2) + 1989 + Technos + California Dreams + + + + + + + + + + + + Block Out (Japan) + 1989 + Technos + California Dreams + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone + 1990 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon 3 - The Rosetta Stone (bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WWF WrestleFest (US) + 1991 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + WWF WrestleFest (US Tecmo) + 1991 + Technos Japan (Tecmo license) + + + + + + + + + + + + + + + + + + + + + + WWF WrestleFest (Japan) + 1991 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + Shadow Force (US Version 2) + 1993 + Technos Japan + + + + + + + + + + + + + + + + + + + + + + Berzerk (set 1) + 1980 + Stern + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Berzerk (set 2) + 1980 + Stern + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Frenzy + 1982 + Stern + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MegaTack + 1980 + GamePlan (Centuri license) + + + + + + + + + + + + + + + Killer Comet + 1980 + GamePlan (Centuri license) + + + + + + + + + + + + + + + Challenger + 1981 + GamePlan (Centuri license) + + + + + + + + + + + + + Kaos + 1981 + GamePlan + + + + + + + + + + + + + Super Invader Attack + Zaccaria/Zelco + + + + + + + + The Invaders + Zaccaria/Zelco + + + + + + + + Money Money + 1983 + Zaccaria + + + + + + + + + + + + + + + + + + + + + + + + + + Jack Rabbit (set 1) + 1984 + Zaccaria + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jack Rabbit (set 2) + 1984 + Zaccaria + + + + + + + + + + + + + + + + + + + + + + + + + + Jack Rabbit (special) + 1984 + Zaccaria + + + + + + + + + + + + + + + + + + + + + + + + + + Mouser + 1983 + UPL + + + + + + + + + + + + + + + + + Mouser (Cosmos) + 1983 + [UPL] (Cosmos license) + + + + + + + + + + + + + + + + + Nova 2001 (Japan) + 1983 + UPL + + + + + + + + + + + + + + + Nova 2001 (US) + 1983 + UPL (Universal license) + + + + + + + + + + + + + + + Ninjakun Majou no Bouken + 1984 + [UPL] (Taito license) + + + + + + + + + + + + + + + + + + + + Raiders5 + 1985 + UPL + + + + + + + + + + + + + Raiders5 (Japan) + 1985 + UPL (Taito license) + + + + + + + + + + + + + Penguin-Kun Wars (US) + UPL + + + + + + + + + + + + + + Penguin-Kun Wars (Japan) + UPL + + + + + + + + + + + + + + XX Mission + 1986 + UPL + + + + + + + + + + + + + + + + + + Ninja-Kid II (set 1) + 1987 + UPL + + + + + + + + + + + + + + + + + + Ninja-Kid II (set 2) + 1987 + UPL + + + + + + + + + + + + + + + + + + + + + Ninja-Kid II (set 3) + 1987 + UPL + + + + + + + + + + + + + + + + + + + + + Rad Action + 1987 + UPL (World Games license) + + + + + + + + + + + + + + + + + + + + + Mutant Night + 1987 + UPL (Kawakus license) + + + + + + + + + + + + + + + + + + + + Ark Area + UPL + + + + + + + + + + + + + + + + + + + + Atomic Robo-kid + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Atomic Robo-kid (Japan) + 1988 + UPL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Omega Fighter + 1989 + UPL + + + + + + + + + + + + + + + Omega Fighter Special + 1989 + UPL + + + + + + + + + + + + + + + US AAF Mustang (Japan) + 1990 + UPL + + + + + + + + + + + + + + + + + + US AAF Mustang (Seoul Trading) + 1990 + UPL (Seoul Trading license) + + + + + + + + + + + + + + + + + + US AAF Mustang (bootleg) + 1990 + bootleg + + + + + + + + + + + + + + + Bio-ship Paladin + 1990 + UPL (American Sammy license) + + + + + + + + + + + + + + + + + Vandyke (Japan) + 1990 + UPL + + + + + + + + + + + + + + + + + + + Vandyke (Jaleco) + 1990 + UPL (Jaleco License) + + + + + + + + + + + + + + + + + + + Black Heart + 1991 + UPL + + + + + + + + + + + + + + + + Black Heart (Japan) + 1991 + UPL + + + + + + + + + + + + + + + + Acrobat Mission + 1991 + UPL (Taito license) + + + + + + + + + + + + + + + + + Koutetsu Yousai Strahl (Japan set 1) + 1992 + UPL + + + + + + + + + + + + + + + + + Koutetsu Yousai Strahl (Japan set 2) + 1992 + UPL + + + + + + + + + + + + + + + + + Bombjack Twin + 1993 + NMK + + + + + + + + + + + + + + + Thunder Dragon 2 + 1993 + NMK + + + + + + + + + + + + + + + + + + Big Bang + 1993 + NMK + + + + + + + + + + + + + + + + + + Thunder Dragon + 1991 + NMK / Tecmo + + + + + + + + + + + + + + Thunder Dragon (Bootleg) + 1991 + NMK / Tecmo + + + + + + + + + + + + + + + + Super Spacefortress Macross / Chou-Jikuu Yousai Macross + 1992 + Banpresto + + + + + + + + + + + + + + + + GunNail + 1993 + NMK / Tecmo + + + + + + + + + + + + + + + + + Super Spacefortress Macross II / Chou-Jikuu Yousai Macross II + 1993 + Banpresto + + + + + + + + + + + + + + + + + + Saboten Bombers + 1992 + NMK / Tecmo + + + + + + + + + + + + + Nouryoku Koujou Iinkai + 1995 + Tecmo + + + + + + + + + + + + + Many Block + 1991 + Bee-Oh + + + + + + + + + + + + + + + + + + + + + + + + S.S. Mission + 1992 + Comad + + + + + + + + + + + + + + + + + + Rapid Hero (Japan?) + 1994 + Media Trading Corp + + + + + + + + + + + + + + + + + + + + Macross Plus + 1996 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Bisyoujo Senshi Sailor Moon - Chiryoku Tairyoku Toki no Un + 1997 + Banpresto + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Gakuen Paradise (Japan) + 1991 + NMK + + + + + + + + + + + + + + + + Quiz DNA no Hanran (Japan) + 1992 + Face + + + + + + + + + + + + + Quiz Gekiretsu Scramble (Japan) + 1992 + Face + + + + + + + + + + + + Narc (rev 7.00) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Narc (rev 3.20) + 1988 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Trog (rev LA4 03/11/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + + + + + + Trog (rev LA3 02/14/91) + 1990 + Midway + + + + + + + + + + + + + + + + + + + + + + + Trog (rev PA6-PAC 09/09/90) + 1990 + Midway + + + + + + + + + + + + + + + + + + + + + + + Trog (prototype, rev 4.00 07/27/90) + 1990 + Midway + + + + + + + + + + + + + + + + + + + + + + + Smash T.V. (rev 8.00) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + Smash T.V. (rev 6.00) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + Smash T.V. (rev 5.00) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + Smash T.V. (rev 4.00) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + High Impact Football (rev LA3 12/27/90) + 1990 + Williams + + + + + + + + + + + + + + + + + + + + + + + + + Super High Impact (rev LA1 09/30/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Super High Impact (prototype, rev 5.0 09/15/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Strike Force (rev 1 02/25/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 5.0 T-Unit 03/19/93) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 4.0 T-Unit 02/11/93) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (prototype, rev 9.0 07/28/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat (rev 1.0 08/08/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 + + + + + + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA3 03/27/92) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA2 12/09/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Terminator 2 - Judgment Day (rev LA1 11/01/91) + 1991 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Total Carnage (rev LA1 03/10/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Total Carnage (prototype, rev 1.0 01/25/92) + 1992 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.1) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L3.2 (European)) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L2.1) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L1.4) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L4.2, hack) + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II (rev L9.1, hack) + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat II Challenger (hack) + 1993 + hack + + + + + + + + + + + + + + + + + + + + + + + + + + Judge Dredd (rev LA1, prototype) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam (rev 3.01 04/07/93) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam (rev 2.00 02/10/93) + 1993 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 4.0 03/23/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 1.0 01/17/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 2.0 01/28/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Jam TE (rev 3.0 03/04/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Revolution X (Rev. 1.0 6/16/94) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 2.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 2.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mortal Kombat 3 (rev 1.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 (rev 1.2) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate Mortal Kombat 3 (rev 1.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WWF: Wrestlemania (rev 1.30 08/10/95) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 On 2 Open Ice Challenge (rev 1.21) + 1995 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Hangtime (rev L1.1 04/16/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + NBA Maximum Hangtime (rev 1.0 11/8/96) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rampage: World Tour (rev 1.3) + 1997 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rampage: World Tour (rev 1.1) + 1997 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n USA (rev L4.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n USA (rev L4.0) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n USA (rev L2.1) + 1994 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n World (rev L2.3) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n World (rev L2.0) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cruis'n World (rev L1.3) + 1996 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Off Road Challenge + 1997 + Midway + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + War Gods + 1996 + Midway + + + + + + + + + Tri-Pool (Casino Tech) + 1981 + Noma (Casino Tech license) + + + + + + + + + + + + + + + + Tri-Pool (Costal Games) + 1981 + Noma (Costal Games license) + + + + + + + + + + + + + + + + Jack the Giantkiller (set 1) + 1982 + Cinematronics + + + + + + + + + + + + + + + + + + + Jack the Giantkiller (set 2) + 1982 + Cinematronics + + + + + + + + + + + + + + + + + + + Jack the Giantkiller (set 3) + 1982 + Cinematronics + + + + + + + + + + + + + + + + + + + Treasure Hunt (Japan?) + 1982 + Hara Industries + + + + + + + + + + + + + + + + + + + Zzyzzyxx (set 1) + 1982 + Cinematronics + Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + + + + Zzyzzyxx (set 2) + 1982 + Cinematronics + Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + + + + Brix + 1982 + Cinematronics + Advanced Microcomputer Systems + + + + + + + + + + + + + + + + + + + + Freeze + Cinematronics + + + + + + + + + + + + + + + + + + + Super Casino + 1982 + Data Amusement + + + + + + + + + + + + + + + + + Space Wars + 1978 + Cinematronics + + + + + + + + + + + + + + + Barrier + 1979 + Vectorbeam + + + + + + Star Castle (version 3) + 1980 + Cinematronics + + + + + + + + + + + + + + + + + Star Castle (older) + 1980 + Cinematronics + + + + + + + + + + + + + + + + + Star Castle (prototype) + 1980 + Cinematronics + + + + + + + + + + + + + + + + + Star Castle (Mottoeis) + 1980 + Cinematronics (Mottoeis license) + + + + + + + + + + + + + + + + + Stellar Castle (Elettronolo) + 1980 + bootleg + + + + + + + + + + + + + + + + + Tailgunner + 1979 + Cinematronics + + + + + + + + Rip Off + 1979 + Cinematronics + + + + + + + + + + + + + + + + + + + + + + Armor Attack + 1980 + Cinematronics + + + + + + + + Armor Attack (prototype) + 1980 + Cinematronics + + + + + + + + Armor Attack (Rock-ola) + 1980 + Cinematronics (Rock-ola license) + + + + + + + + War of the Worlds + 1981 + Cinematronics + + + + + + + + Warrior + 1978 + Vectorbeam + + + + + + + + + + + + + + Star Hawk + 1981 + Cinematronics + + + + + + Solar Quest + 1981 + Cinematronics + + + + + + + + + + + + + + + + + + + + Boxing Bugs + 1981 + Cinematronics + + + + + + + + + + + + Speed Freak + Vectorbeam + + + + + + + + Sundance + 1979 + Cinematronics + + + + + + + + Demon + 1982 + Rock-ola + + + + + + + + + + + + + Cosmic Chasm (set 1) + 1983 + Cinematronics / GCE + + + + + + + + + + + + + + + + + + + + + + + + + Cosmic Chasm (set 2) + 1983 + Cinematronics / GCE + + + + + + + + + + + + + + + + + + + + + + + + + Round-Up + 1981 + Amenip/Centuri + + + + + + + + + + + + + + + + + Fitter + 1981 + Taito + + + + + + + + + + + + + + + + + The Pit + 1982 + Centuri + + + + + + + + + + + + + + + + Port Man + 1982 + Nova Games Ltd. + + + + + + + + + + + + + + + + + Funny Mouse + 1982 + Chuo Co. Ltd + + + + + + + + + + + + + + + + + + Super Mouse + 1982 + Taito + + + + + + + + + + + + + + + + + + Macho Mouse + 1982 + Techstar + + + + + + + + + + + + + + + + + + Intrepid (set 1) + 1983 + Nova Games Ltd. + + + + + + + + + + + + + + + + + Intrepid (set 2) + 1983 + Nova Games Ltd. + + + + + + + + + + + + + + + + + Zarya Vostoka + 1984 + Nova Games of Canada + + + + + + + + + + + + + + + + + + + + Time Limit + 1983 + Chuo Co. Ltd + + + + + + + + + + + + + + + + + + + + + + Progress + 1984 + Chuo Co. Ltd + + + + + + + + + + + + + + + + + + + + + + Bagman + 1982 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + Le Bagnard + 1982 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + Bagman (Stern set 1) + 1982 + Valadon Automation (Stern license) + + + + + + + + + + + + + + + + + + + + + Bagman (Stern set 2) + 1982 + Valadon Automation (Stern license) + + + + + + + + + + + + + + + + + + + + + Super Bagman + 1984 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + + + + + Super Bagman (Stern) + 1984 + Valadon Automation (Stern license) + + + + + + + + + + + + + + + + + + + + + + + + + Pickin' + 1983 + Valadon Automation + + + + + + + + + + + + + + + Tank Busters + 1985 + Valadon Automation + + + + + + + + + + + + + + + + + + + + + + + + + Stinger + 1983 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + + Stinger (prototype?) + 1983 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + + Scion + 1984 + Seibu Denshi + + + + + + + + + + + + + + + + + + + + + + Scion (Cinematronics) + 1984 + Seibu Denshi (Cinematronics license) + + + + + + + + + + + + + + + + + + + + + + Kung-Fu Taikun + 1984 + Seibu Kaihatsu Inc. + + + + + + + + + + + + + + + + + + + + + Wiz + 1985 + Seibu Kaihatsu Inc. + + + + + + + + + + + + + + + + + + + + + Wiz (Taito) + 1985 + [Seibu] (Taito license) + + + + + + + + + + + + + + + + + + + + + Knuckle Joe (set 1) + 1985 + [Seibu Kaihatsu] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Knuckle Joe (set 2) + 1985 + [Seibu Kaihatsu] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + Bone Crusher + 1985 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + Empire City: 1931 (bootleg?) + 1986 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Empire City: 1931 (Japan) + 1986 + [Seibu Kaihatsu] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Fight (Germany) + 1986 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mustache Boy + 1987 + [Seibu Kaihatsu] (March license) + + + + + + + + + + + + + + + Dead Angle + 1988 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gang Hunter (Spain) + 1988 + Seibu Kaihatsu (Segasa/Sonic license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dynamite Duke + 1989 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Double Dynamites + 1989 + Seibu Kaihatsu (Fabtek license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Raiden + 1990 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + Raiden (Alternate Hardware) + 1990 + Seibu Kaihatsu + + + + + + + + + + + + + + + + + + + + + Raiden (Korea) + 1990 + Seibu Kaihatsu (IBL Corporation license) + + + + + + + + + + + + + + + + + + + + + Raiden (Taiwan) + 1990 + Seibu Kaihatsu (Liang HWA Electronics license) + + + + + + + + + + + + + + + + + + + + + SD Gundam Psycho Salamander no Kyoui + 1991 + Banpresto / Bandai + + + + + + + + + + + + + + + + + + + + + D-Con + 1992 + Success + + + + + + + + + + + + + + + + + + + + + + Cabal (US set 1) + 1988 + Tad (Fabtek license) + + + + + + + + + + + + + + + + + + + Cabal (US set 2) + 1988 + Tad (Fabtek license) + + + + + + + + + + + + + + + + + + + Cabal (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + Toki (World set 1) + 1989 + Tad + + + + + + + + + + + + + + + + + + + + Toki (World set 2) + 1989 + Tad + + + + + + + + + + + + + + + + + + + + JuJu Densetsu (Japan) + 1989 + Tad + + + + + + + + + + + + + + + + + + + + Toki (US) + 1989 + Tad (Fabtek license) + + + + + + + + + + + + + + + + + + + + Toki (bootleg) + 1989 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blood Bros. + 1990 + Tad + + + + + + + + + + + + + + + + + West Story + 1990 + bootleg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sky Smasher + 1990 + Nihon System Inc. + + + + + + + + + + + + + + + + + Exerion + 1983 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + Exerion (Taito) + 1983 + Jaleco (Taito America license) + + + + + + + + + + + + + + + + + + + + + + Exerion (bootleg) + 1983 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Formation Z + 1984 + Jaleco + + + + + + + + + + + + + + + + + + + Aeroboto + 1984 + [Jaleco] (Williams license) + + + + + + + + + + + + + + + + + + + City Connection (set 1) + 1985 + Jaleco + + + + + + + + + + + + + + + + + + + + City Connection (set 2) + 1985 + Jaleco + + + + + + + + + + + + + + + + + + + + Cruisin + 1985 + Jaleco (Kitkorp license) + + + + + + + + + + + + + + + + + + + + Momoko 120% + 1986 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + Argus + 1986 + [NMK] (Jaleco license) + + + + + + + + + + + + + + + + + + + + + + + Valtric + 1986 + [NMK] (Jaleco license) + + + + + + + + + + + + + + + + + + Butasan (Japan) + 1987 + [NMK] (Jaleco license) + + + + + + + + + + + + + + + + + + + + + + + + + Psychic 5 + 1987 + Jaleco + + + + + + + + + + + + + + + Ginga NinkyouDen + 1987 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Sky Fox + 1987 + Jaleco (Nichibutsu USA License) + + + + + + + + + + + + + + + + + + + + Exerizer (Japan) (bootleg) + 1987 + Jaleco + + + + + + + + + + + + + + + + + + + + Big Run (11th Rallye version) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cisco Heat + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Prix Star + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Scud Hammer + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Tetris Plus 2 (World?) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + + + + Tetris Plus 2 (Japan) + 1997 + Jaleco / The Tetris Company + + + + + + + + + + + + + Legend of Makai (World) + 1988 + Jaleco + + + + + + + + + + + + + + Makai Densetsu (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + P-47 - The Phantom Fighter (World) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + P-47 - The Freedom Fighter (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + Kick Off (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + Takeda Shingen (Japan, Japanese) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + Shingen Samurai-Fighter (Japan, English) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + Iga Ninjyutsuden (Japan) + 1988 + Jaleco + + + + + + + + + + + + + + + + + + + + + The Astyanax + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Lord of King (Japan) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hachoo! + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + Jitsuryoku!! Pro Yakyuu (Japan) + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + Plus Alpha + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saint Dragon + 1989 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Rod-Land (World) + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + Rod-Land (Japan) + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + Rod-Land (Japan bootleg) + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + Avenging Spirit + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + Phantasm (Japan) + 1990 + Jaleco + + + + + + + + + + + + + + + + + + + + + E.D.F. : Earth Defense Force + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + 64th. Street - A Detective Story (World) + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + 64th. Street - A Detective Story (Japan) + 1991 + Jaleco + + + + + + + + + + + + + + + + + + + + Soldam (Japan) + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + + + Big Striker + 1992 + Jaleco + + + + + + + + + + + + + + + + + + + Big Striker (bootleg) + 1992 + bootleg + + + + + + + + + + + + + + + + + + + + + + Chimera Beast (prototype) + 1993 + Jaleco + + + + + + + + + + + + + + + + + + + + Cybattler + 1993 + Jaleco + + + + + + + + + + + + + + + + + + + + Peek-a-Boo! + 1993 + Jaleco + + + + + + + + + + + + Hayaoshi Quiz Ouza Ketteisen + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + Best Bout Boxing + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Idol Janshi Su-Chi-Pie 2 (v1.1) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Idol Janshi Su-Chi-Pie 2 (v1.0) + 1994 + Jaleco + + + + + + + + + + + + + + + + + + + + + + Desert War / Wangan Sensou + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Tetris Plus + 1995 + Jaleco / BPS + + + + + + + + + + + + + + + + P-47 Aces + 1995 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + + Gratia - Second Earth (92047-01 version) + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + Gratia - Second Earth (91022-10 version) + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + Ryuusei Janshi Kirara Star + 1996 + Jaleco + + + + + + + + + + + + + + + + + + + + + + + Tetris Plus 2 (MegaSystem 32 Version) + 1997 + Jaleco + + + + + + + + + + + + + + + Rabio Lepus (Japan) + 1987 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + Rabbit Punch (US) + 1987 + V-System Co. (Bally/Midway/Sente license) + + + + + + + + + + + + + + + + + + + + + + + + + Super Volleyball (Japan) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Volleyball (Korea) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Volleyball (US) + 1989 + V-System Co. (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tail to Nose - Great Championship + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + Super Formula (Japan) + 1989 + V-System Co. + + + + + + + + + + + + + + + + + + + + Ojanko Yakata (Japan) + 1986 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + Ojanko Yakata 2bankan (Japan) + 1987 + V-System Co. + + + + + + + + + + + + + + + + + + + + + Chinese Casino [BET] (Japan) + 1987 + V-System Co. + + + + + + + + + + + + + + + + + Ojanko High School (Japan) + 1988 + V-System Co. + + + + + + + + + + Rettou Juudan Nekkyoku Janshi - Higashi Nippon Hen (Japan) + 1988 + Video System Co. + + + + + + + + + + + + + + + + + + + + Idol-Mahjong Housoukyoku (Japan) + 1988 + System Service + + + + + + + + + + + + + + + + Mahjong Natsu Monogatari (Japan) + 1989 + Video System Co. + + + + + + + + + + + + + + + + + + Mahjong Fun Club - Idol Saizensen (Japan) + 1989 + Video System Co. + + + + + + + + + + + + + + + + + Mahjong Daiyogen (Japan) + 1990 + Video System Co. + + + + + + + + + + + + + + + + Nekketsu Mahjong Sengen! AFTER 5 (Japan) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + Idol-Mahjong Final Romance (Japan) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + Pipe Dream (US) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + Pipe Dream (Japan) + 1990 + Video System Co. + + + + + + + + + + + + + + + + + Hatris (Japan) + 1990 + Video System Co. + + + + + + + + + + + + + Spinal Breakers (World) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (US) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Spinal Breakers (Japan) + 1990 + V-System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Spikes (World) + 1991 + Video System Co. + + + + + + + + + + + + + Power Spikes (Korea) + 1991 + Video System Co. + + + + + + + + + + + + + Super Volley '91 (Japan) + 1991 + Video System Co. + + + + + + + + + + + + + Karate Blazers (World?) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + Karate Blazers (US) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + Turbo Force + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + 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. + + + + + + + + + + + + + + + + + Sonic Wings (Japan) + 1992 + Video System Co. + + + + + + + + + + + + + + + + + Welltris (Japan, 2 players) + 1991 + Video System Co. + + + + + + + + + + + + + + + + + F-1 Grand Prix + 1991 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + F-1 Grand Prix Part II + 1992 + Video System Co. + + + + + + + + + + + + + + + + + + + + Lethal Crash Race (set 1) + 1993 + Video System Co. + + + + + + + + + + + + + + + + + + Lethal Crash Race (set 2) + 1993 + Video System Co. + + + + + + + + + + + + + + + + + + Tao Taido (set 1) + 1993 + Video System Co. + + + + + + + + + + + + + + + Tao Taido (set 2) + 1993 + Video System Co. + + + + + + + + + + + + + + + Grand Striker + 1993 + Human + + + + + + + + + + + + + + + + + + Super Slams + 1995 + Banpresto / Toei Animation + + + + + + + + + + + + + + + + + + Taisen Idol-Mahjong Final Romance 2 (Japan) + 1995 + Video System + + + + + + + + + + + + + + + + + + + + Taisen Mahjong FinalRomance R (Japan) + 1995 + Video System + + + + + + + + + + + + + + + + + + + + + + + + Taisen Mahjong FinalRomance 4 (Japan) + 1998 + Video System + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Aces (World) + 1993 + Psikyo + + + + + + + + + + + + + + Sengoku Ace (Japan) + 1993 + Psikyo + + + + + + + + + + + + + + Gunbird (World) + 1994 + Psikyo + + + + + + + + + + + + + + + + + Gunbird (Korea) + 1994 + Psikyo + + + + + + + + + + + + + + + + + Gunbird (Japan) + 1994 + Psikyo + + + + + + + + + + + + + + + + + Battle K-Road + 1994 + Psikyo + + + + + + + + + + + + + + + + Strikers 1945 + 1995 + Psikyo + + + + + + + + + + + + + + + + Strikers 1945 (Japan) + 1995 + Psikyo + + + + + + + + + + + + + + + + Strikers 1945 (Japan, unprotected) + 1995 + Psikyo + + + + + + + + + + + + + + + + + Tengai / Sengoku Blade: Sengoku Ace Episode II + 1996 + Psikyo + + + + + + + + + + + + + + + + Strikers 1945 II + 1997 + Psikyo + + + + + + + + + + + + + + + + Sol Divide - The Sword Of Darkness + 1997 + Psikyo + + + + + + + + + + + + + + Space Bomber (ver. B) + 1998 + Psikyo + + + + + + + + + + + + + + + + + + Daraku Tenshi - The Fallen Angels + 1998 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + Gunbird 2 + 1998 + Psikyo + + + + + + + + + + + + + + + + + Strikers 1945 III (World) / Strikers 1999 (Japan) + 1999 + Psikyo + + + + + + + + + + + + + + + + + Dragon Blaze + 2000 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gunbarich + 2001 + Psikyo + + + + + + + + + + + + + + + + Taisen Hot Gimmick (Japan) + 1997 + Psikyo + + + + + + + + + + + + + + + + + + Taisen Hot Gimmick Kairakuten (Japan) + 1998 + Psikyo + + + + + + + + + + + + + + + + + + + + + + Lode Runner - The Dig Fight (ver. B) (Japan) + 2000 + Psikyo + + + + + + + + + + + + Lode Runner - The Dig Fight (ver. A) (Japan) + 2000 + Psikyo + + + + + + + + + + + + Quiz de Idol! Hot Debut (Japan) + 2000 + Psikyo / Moss + + + + + + + + + + + + + + Marine Boy + 1982 + Orca + + + + + + + + + + + + + + + Changes + 1982 + Orca + + + + + + + + + + + + + + Looper + 1982 + Orca + + + + + + + + + + + + + + Springer + 1982 + Orca + + + + + + + + + + + + + + + + Hoccer (set 1) + 1983 + Eastern Micro Electronics, Inc. + + + + + + + + + + + + + Hoccer (set 2) + 1983 + Eastern Micro Electronics, Inc. + + + + + + + + + + + + + Battle Cruiser M-12 + 1983 + Sigma Enterprises Inc. + + + + + + + + + + + + + + + Hopper Robo + 1983 + Sega + + + + + + + + + + + + + + + + Wanted + 1984 + Sigma Enterprises Inc. + + + + + + + + + + + + + + + Funky Bee + 1982 + Orca Corporation + + + + + + + + + + + + Sky Lancer + 1983 + Orca (Esco Trading Co license) + + + + + + + + + + + Zodiack + 1983 + Orca (Esco Trading Co, Inc) + + + + + + + + + + + + + + + Dog Fight (Thunderbolt) + 1983 + [Orca] Thunderbolt + + + + + + + + + + + + + + + + Moguchan + 1982 + Orca (Eastern Commerce Inc. license) (bootleg?) + + + + + + + + + + + + + + + The Percussor + 1981 + Orca + + + + + + + + + + + + + + + + + + The Bounty + 1982 + Orca + + + + + + + + + + + + + + + + + Espial (US?) + 1983 + [Orca] Thunderbolt + + + + + + + + + + + + + + + + + + Espial (Europe) + 1983 + [Orca] Thunderbolt + + + + + + + + + + + + + + + + + + Net Wars + 1983 + Orca (Esco Trading Co license) + + + + + + + + + + + + + + + + Vastar (set 1) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + + + + + + + + Vastar (set 2) + 1983 + Sesame Japan + + + + + + + + + + + + + + + + + + + + + + + + + Big Karnak + 1991 + Gaelco + + + + + + + + + + + + + + + Splash! (Ver. 1.2 World) + 1992 + Gaelco + + + + + + + + + + + + + + + + + + + + Glass + 1993 + Gaelco + + + + + + + + + + + Target Hits + 1994 + Gaelco + + + + + + + + + + + + + TH Strikes Back + 1994 + Gaelco + + + + + + + + + + Alligator Hunt + 1994 + Gaelco + + + + + + + + + + + Alligator Hunt (unprotected) + 1994 + Gaelco + + + + + + + + + + + Biomechanical Toy (unprotected) + 1995 + Gaelco + + + + + + + + + + + + + + + + + World Rally 2: Twin Racing + 1995 + Gaelco + + + + + + + + + + + + + + + + + + + + + Maniac Square (prototype) + 1996 + Gaelco + + + + + + + + + + + + Maniac Square (unprotected) + 1996 + Gaelco + + + + + + + + + + + Snow Board Championship (set 1) + 1996 + Gaelco + + + + + + + + + + + Snow Board Championship (set 2) + 1996 + Gaelco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bang! + 1998 + Gaelco + + + + + + + + + + + + + + + + + + + + + Air Buster + 1990 + Kaneko (Namco license) + + + + + + + + + + + + + + + Air Buster (Japan) + 1990 + Kaneko (Namco license) + + + + + + + + + + + + + + + Gals Panic (set 1) + 1990 + Kaneko + + + + + + + + + + + + + + + + + + Gals Panic (set 2) + 1990 + Kaneko + + + + + + + + + + + + + + + + The Berlin Wall (set 1) + 1991 + Kaneko + + + + + + + + + + + + + + + + + + + + + + The Berlin Wall (set 2) + 1991 + Kaneko + + + + + + + + + + + + + + + + + + + + + + Magical Crystals (World) + 1991 + Kaneko + + + + + + + + + + + + + + + Magical Crystals (Japan) + 1991 + Kaneko (Atlus license) + + + + + + + + + + + + + + + Blaze On (Japan) + 1992 + Atlus + + + + + + + + + + + + Sand Scorpion + 1992 + Face + + + + + + + + + + + + + + + Great 1000 Miles Rally + 1994 + Kaneko + + + + + + + + + + + + + + + + + + Great 1000 Miles Rally (Evolution Model) + 1994 + Kaneko + + + + + + + + + + + + + + + + + + + Great 1000 Miles Rally (USA) + 1994 + Kaneko + + + + + + + + + + + + + + + + + + + Mille Miglia 2: Great 1000 Miles Rally + 1995 + Kaneko + + + + + + + + + + + + + + + + + + + + + + + + Gals Panic 4 (Japan) + 1996 + Kaneko + + + + + + + + + + + + + Gals Panic S - Extra Edition (Japan) + 1997 + Kaneko + + + + + + + + + + + + + + Sengeki Striker (Japan) + 1997 + Kaneko / Warashi + + + + + + + + + + + + + + + + VS Block Breaker (Asia) + 1997 + Kaneko / Mediaworks + + + + + + + + + + + + Saru-Kani-Hamu-Zou (Japan) + 1997 + Kaneko / Mediaworks + + + + + + + + + + + + Cyvern (Japan) + 1998 + Kaneko + + + + + + + + + + + + + + Gals Panic S2 (Japan) + 1999 + Kaneko + + + + + + + + + + + + + + + + Panic Street (Japan) + 1999 + Kaneko + + + + + + + + + + + + Sen-Know (Japan) + 1999 + Kaneko / Kouyousha + + + + + + + + + + + + + + Guts'n (Japan) + 2000 + Kaneko / Kouyousha + + + + + + + + + + + Puzz Loop (Europe) + 1998 + Mitchell + + + + + + + + + + + + Puzz Loop (Japan) + 1998 + Mitchell + + + + + + + + + + + + Jan Jan Paradise + 1996 + Electro Design + + + + + + + + + + + + + Jan Jan Paradise 2 + 1997 + Electro Design + + + + + + + + + + + + + + Otome Ryouran + 1998 + Electro Design + + + + + + + + + + + + + + Tel Jan + 1999 + Electro Design + + + + + + + + + + + + + Hana Awase (Flower Matching) + 1982 + Seta + + + + + + + + + + + + + + + + Super Real Mahjong Part 2 (Japan) + 1987 + Seta + + + + + + + + + + + + + + + + + + + Super Real Mahjong Part 3 (Japan) + 1988 + Seta + + + + + + + + + + + + + + + + + + Mahjong Yuugi (Japan set 1) + 1990 + Visco + + + + + + + + + + + + + + + + + + + + Mahjong Yuugi (Japan set 2) + 1990 + Visco + + + + + + + + + + + + + + + + + + + + Mahjong Pon Chin Kan (Japan set 1) + 1991 + Visco + + + + + + + + + + + + + + + + Mahjong Pon Chin Kan (Japan set 2) + 1991 + Visco + + + + + + + + + + + + + + + + Thundercade / Twin Formation + 1987 + [Seta] (Taito license) + + + + + + + + + + + + + + + + + + + + Tokusyu Butai U.A.G. (Japan) + 1987 + [Seta] (Taito license) + + + + + + + + + + + + + + + + + + + + Twin Eagle - Revenge Joe's Brother + 1988 + Seta (Taito license) + + + + + + + + + + + + + + + + + + DownTown + 1989 + Seta + + + + + + + + + + + + + + + + + + U.S. Classic + 1989 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + + Caliber 50 + 1989 + Athena / Seta + + + + + + + + + + + + + + + + + + + Arbalester + 1989 + Seta + + + + + + + + + + + + + + + + + + + Meta Fox + 1989 + Seta + + + + + + + + + + + + + + + + + + + + + Dragon Unit / Castle of Dragon + 1989 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wit's (Japan) + 1989 + Athena (Visco license) + + + + + + + + + + + + + Thunder & Lightning + 1990 + Seta + + + + + + + + + + + + + Rezon + 1991 + Allumer + + + + + + + + + + + + + + Strike Gunner S.T.G + 1991 + Athena / Tecmo + + + + + + + + + + + + + + + Blandia + 1992 + Allumer + + + + + + + + + + + + + + + + + + Blandia (prototype) + 1992 + Allumer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Block Carnival / Thunder & Lightning 2 + 1992 + Visco + + + + + + + + + + Quiz Kokology + 1992 + Tecmo + + + + + + + + + + + + + + + SD Gundam Neo Battling (Japan) + 1992 + Banpresto / Sotsu Agency. Sunrise + + + + + + + + + + Ultraman Club - Tatakae! Ultraman Kyoudai!! + 1992 + Tsuburaya Prod. / Banpresto + + + + + + + + + + Zing Zing Zip + 1992 + Allumer + Tecmo + + + + + + + + + + + + + Athena no Hatena ? + 1993 + Athena + + + + + + + + + J. J. Squawkers + 1993 + Athena / Able + + + + + + + + + + + + + + + + + + + Masked Riders Club Battle Race + 1993 + Toei / Banpresto + + + + + + + + + + Mad Shark + 1993 + Allumer + + + + + + + + + + + Mobile Suit Gundam (set 1) + 1993 + Banpresto + + + + + + + + + + + + Mobile Suit Gundam (set 2) + 1993 + Banpresto + + + + + + + + + + + + Daioh + 1993 + Athena + + + + + + + + + + + + Oishii Puzzle Ha Irimasenka + 1993 + Sunsoft + Atlus + + + + + + + + + + + + + + + + Triple Fun + 1993 + bootleg + + + + + + + + + + + + + + + + Ultra Toukon Densetsu (Japan) + 1993 + Banpresto + Tsuburaya Prod. + + + + + + + + + + + + + + + + + + Quiz Kokology 2 + 1993 + Tecmo + + + + + + + + + + War of Aero - Project MEIOU + 1993 + Yang Cheng + + + + + + + + + + + + + Eight Forces + 1994 + Tecmo + + + + + + + + + + + + + Pro Mahjong Kiwame + 1994 + Athena + + + + + + + + + + Krazy Bowl + 1994 + American Sammy Corp. + + + + + + + + + + + Extreme Downhill (v1.5) + 1995 + Sammy Industries Japan + + + + + + + + + + + + Gundhara + 1995 + Banpresto + + + + + + + + + + + + + + + + + + Sokonuke Taisen Game (Japan) + 1995 + Sammy Industries + + + + + + + + + + + Zombie Raid (US) + 1995 + American Sammy Corp. + + + + + + + + + + + + + + + + Guardians / Denjin Makai II + 1995 + Banpresto + + + + + + + + + + + + + + + + + + Wakakusamonogatari Mahjong Yonshimai (Japan) + 1996 + Maboroshi Ware + + + + + + + + + + + + + + + + Kosodate Quiz My Angel (Japan) + 1996 + Namco + + + + + + + + + + + + + + + + + + Kosodate Quiz My Angel 2 (Japan) + 1997 + Namco + + + + + + + + + + + + + + + + + + Puzzle De Bowling (Japan) + 1999 + Nihon System / Moss + + + + + + + + + + + + Penguin Brothers (Japan) + 2000 + Subsino + + + + + + + + + + + Super Real Mahjong PIV (Japan) + 1993 + Seta + + + + + + + + + + + + + + + + + Super Real Mahjong PIV (Japan, older set) + 1993 + Seta + + + + + + + + + + + + + + + + + Super Real Mahjong P7 (Japan) + 1997 + Seta + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Survival Arts (USA) + 1993 + Sammy (American) + + + + + + + + + + + + + + + + + + + + Mahjong Hyper Reaction (Japan) + 1995 + Sammy + + + + + + + + + + + + + + + + + + Koi Koi Shimasyo 2 - Super Real Hanafuda (Japan) + 1997 + Visco + + + + + + + + + + + + + + + + + Meosis Magic (Japan) + Sammy + + + + + + + + + + + + + Mahjong Hyper Reaction 2 (Japan) + 1997 + Sammy + + + + + + + + + + + + + + + + + + + + Pachinko Sexy Reaction (Japan) + 1998 + Sammy + + + + + + + + + + + + + + + + + + + + Change Air Blade (Japan) + 1999 + Sammy + + + + + + + + + + + + + Dramatic Adventure Quiz Keith & Lucy (Japan) + 1993 + Visco + + + + + + + + + + + + + + Drift Out '94 - The Hard Order (Japan) + 1994 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + Lovely Pop Mahjong Jan Jan Shimasyo (Japan) + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + Storm Blade (US) + 1996 + Visco + + + + + + + + + + + + + + + + + + Monster Slider (Japan) + 1997 + Visco / Datt Japan + + + + + + + + + + + + + + + Gourmet Battle Quiz Ryohrioh CooKing (Japan) + 1998 + Visco + + + + + + + + + + + + + + + + + Vasara + 2000 + Visco + + + + + + + + + + + + + + Vasara 2 (set 1) + 2001 + Visco + + + + + + + + + + + + + + Vasara 2 (set 2) + 2001 + Visco + + + + + + + + + + + + + + Power Instinct (USA bootleg) + 1993 + Atlus + + + + + + + + + + + + + + + Oh My God! (Japan) + 1993 + Atlus + + + + + + + + + Naname de Magic! (Japan) + 1994 + Atlus + + + + + + + + + Blomby Car + 1994 + ABM & Gecas + + + + + + + + + + + + + Blomby Car (not encrypted) + 1994 + ABM & Gecas + + + + + + + + + + + + + Speak & Rescue + 1980 + Sun Electronics + + + + + + + + + + + + + + + + + + Stratovox + 1980 + [Sun Electronics] (Taito license) + + + + + + + + + + + + + + + + + + Space Echo + 1980 + bootleg + + + + + + + + + + + + + + + + + + + Route 16 + 1981 + Tehkan/Sun (Centuri license) + + + + + + + + + + + + + + + + + + Route 16 (set 2) + 1981 + Tehkan/Sun (Centuri license) + + + + + + + + + + + + + + + + + + Route 16 (bootleg) + 1981 + bootleg + + + + + + + + + + + + + + + + + + Mahjong + 1981 + Taito + + + + + + + + + + + + + + + Funky Fish + 1981 + Sun Electronics + + + + + + + + + + + + + + + Kangaroo + 1982 + Sun Electronics + + + + + + + + + + + + + + + + + + Kangaroo (Atari) + 1982 + [Sun Electronics] (Atari license) + + + + + + + + + + + + + + + + + + Kangaroo (bootleg) + 1982 + bootleg + + + + + + + + + + + + + + + + + Arabian + 1983 + Sun Electronics + + + + + + + + + + + + + Arabian (Atari) + 1983 + [Sun Electronics] (Atari license) + + + + + + + + + + + + + Markham + 1983 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + + Strength & Skill + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + + + + The Guiness (Japan) + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + + + + Pettan Pyuu (Japan) + 1984 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + + + Ikki (Japan) + 1985 + Sun Electronics + + + + + + + + + + + + + + + + + + + + + + + + + Shanghai (Japan) + 1988 + Sunsoft + + + + + + + + + + + Shanghai II (Japan) + 1989 + Sunsoft + + + + + + + + + Shanghai III (Japan) + 1993 + Sunsoft + + + + + + + + + + Hebereke no Popoon (Japan) + 1994 + Sunsoft / Atlus + + + + + + + + + + + + + + + + + + Blocken (Japan) + 1994 + KID / Visco + + + + + + + + + + + + + + Goindol (World) + 1987 + Sun a Electronics + + + + + + + + + + + + + + + + + + + Goindol (US) + 1987 + Sun a Electronics + + + + + + + + + + + + + + + + + + + Goindol (Japan) + 1987 + Sun a Electronics + + + + + + + + + + + + + + + + + + + Rough Ranger (v2.0) + 1988 + SunA (Sharp Image license) + + + + + + + + + + + + + + + + + + + + + + Hard Head + 1988 + SunA + + + + + + + + + + + + + + + + + + + + + Hard Head (bootleg) + 1988 + bootleg + + + + + + + + + + + + + + + + + + + + + Back Street Soccer + 1996 + SunA + + + + + + + + + + + + + + + + + + + + + + + + + Ultra Balloon + 1996 + SunA + + + + + + + + + + + + + + + + + Gun Dealer (set 1) + 1990 + Dooyong + + + + + + + + Gun Dealer (set 2) + Dooyong + + + + + + + + Gun Dealer (Tecmo) + 1990 + Tecmo + + + + + + + + Yam! Yam!? + 1990 + Dooyong + + + + + + + + Wise Guy + 1990 + Dooyong + + + + + + + + The Last Day (set 1) + 1990 + Dooyong + + + + + + + + + + + + + + + + + + + + + + + The Last Day (set 2) + 1990 + Dooyong + + + + + + + + + + + + + + + + + + + + + + + Gulf Storm + 1991 + Dooyong + + + + + + + + + + + + + + + + + + + + + + + + Gulf Storm (Media Shoji) + 1991 + Dooyong (Media Shoji license) + + + + + + + + + + + + + + + + + + + + + + + + Pollux (set 1) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + Pollux (set 2) + 1991 + Dooyong + + + + + + + + + + + + + + + + + + Blue Hawk + 1993 + Dooyong + + + + + + + + + + + + + + + + Blue Hawk (NTC) + 1993 + [Dooyong] (NTC license) + + + + + + + + + + + + + + + + Sadari + 1993 + [Dooyong] (NTC license) + + + + + + + + + + + + + + + + + + + Gun Dealer '94 + 1994 + Dooyong + + + + + + + + + + + + + + + + + + Primella + 1994 + [Dooyong] (NTC license) + + + + + + + + + + + + + + + R-Shark + 1995 + Dooyong + + + + + + + + + + + + + + + + + + + + + + + + + + + + Leprechaun + 1982 + Tong Electronic + + + + + + + + + + + + + + + Pot of Gold + 1982 + GamePlan + + + + + + + + + + + + + + + Beezer (set 1) + 1982 + Tong Electronic + + + + + + + + + + + + + + + + + + + Beezer (set 2) + 1982 + Tong Electronic + + + + + + + + + + + + + + + + + + + Pushman + 1990 + Comad (American Sammy license) + + + + + + + + + + + + + + + + + + + + + + Bouncing Balls + 1991 + Comad + + + + + + + + + + + + + + + + + + + + + + Zero Zone + 1993 + Comad + + + + + + + + + + + + Las Vegas Girl (Girl '94) + 1994 + Comad + + + + + + + + + + + + Hot Pinball + 1995 + Comad & New Japan System + + + + + + + + + + + + + + + + + + + + + Gals Pinball + 1996 + Comad + + + + + + + + + + + + + + + + + + + + + Fantasia + 1994 + Comad & New Japan System + + + + + + + + + + + + + + + + + + + + + + New Fantasia + 1995 + Comad & New Japan System + + + + + + + + + + + + + + + + + + Fantasy '95 + 1995 + Hi-max Technology Inc. + + + + + + + + + + + + + + + + + + Miss World '96 Nude + 1996 + Comad + + + + + + + + + + + + + + + + Fantasia II + 1997 + Comad + + + + + + + + + + + + + + + + + + + Super Slam + 1993 + Playmark + + + + + + + + + + + + + + + Big Twin + 1995 + Playmark + + + + + + + + + + + + + + + + + + World Beach Volley + 1995 + Playmark + + + + + + + + + + + + + + + + + + + + + Shark Attack + 1980 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + Thief + 1981 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + NATO Defense + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + + + + + NATO Defense (alternate mazes) + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + + + + + The Amazing Adventures of Mr. F. Lea + 1982 + Pacific Novelty + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hole Land + 1984 + Tecfri + + + + + + + + + + + + + + + + + + + + Crazy Rally + 1985 + Tecfri + + + + + + + + + + + + + + + + + + Speed Ball + 1987 + Tecfri + + + + + + + + + + + + + + + + Sauro + 1987 + Tecfri + + + + + + + + + + + + + + + + + + + + Tricky Doc + 1987 + Tecfri + + + + + + + + + + + + + + + + The Karate Tournament + 1992 + Mitchell + + + + + + + + + + + + Lady Killer + Yanyaka (Mitchell license) + + + + + + + + + + + + Moeyo Gonta!! (Japan) + Yanyaka + + + + + + + + + + + + Pang Poms + 1992 + Metro + + + + + + + + + + + + + + + + Pang Poms (Mitchell) + 1992 + Metro (Mitchell license) + + + + + + + + + + + + + + + + Sky Alert + 1992 + Metro + + + + + + + + + + + + + + + + Poitto! + 1993 + Metro / Able Corp. + + + + + + + + + + + + Dharma Doujou + 1994 + Metro + + + + + + + + + + + + Last Fortress - Toride + 1994 + Metro + + + + + + + + + + + + + + + + Last Fortress - Toride (Erotic) + 1994 + Metro + + + + + + + + + + + + + + + + Toride II Adauchi Gaiden + 1994 + Metro + + + + + + + + + + + + Daitoride + 1995 + Metro + + + + + + + + + + + + Mahjong Doukyuusei + 1995 + Make Software / Elf / Media Trading + + + + + + + + + + + + + Mahjong Doukyuusei Special + 1995 + Make Software / Elf / Media Trading + + + + + + + + + + + + + Puzzli + 1995 + Metro / Banpresto + + + + + + + + + + + + Sankokushi (Japan) + 1996 + Mitchell + + + + + + + + + + + + Pururun + 1995 + Metro / Banpresto + + + + + + + + + + + + Bal Cube + 1996 + Metro + + + + + + + + + + + + + Mouja (Japan) + 1996 + Etona + + + + + + + + + + + + + Bang Bang Ball (v1.05) + 1996 + Banpresto / Kunihiko Tashiro+Goodhouse + + + + + + + + + + + + + Mahjong Gakuensai (Japan) + 1997 + MakeSoft + + + + + + + + + + + + + + + + + Mahjong Gakuensai 2 (Japan) + 1998 + MakeSoft + + + + + + + + + + + + + + + + + Blazing Tornado + 1994 + Human Amusement + + + + + + + + + + + + + + + + + + + + + + + + + + + Hyper Duel (World) + 1993 + Technosoft + + + + + + + + + + + + + + Hyper Duel (Japan) + 1993 + Technosoft + + + + + + + + + + + + + + Space Force + 1980 + Venture Line + + + + + + + + + + + + + + + + + + + + + + Space Force (set 2) + Elcon (bootleg?) + + + + + + + + + + + + + + + + + + + + + + Meteoroids + 1981 + Venture Line + + + + + + + + + + + + + + + + + + + + + + Looping (set 1) + 1982 + Venture Line + + + + + + + + + + + + + + + + + + + Looping (set 2) + 1982 + Venture Line + + + + + + + + + + + + + + + + + + + + Sky Bumper + 1982 + Venture Line + + + + + + + + + + + + + + + + + + + Paradise + Yun Sung + + + + + + + + + + + + + + + + Cannon Ball + 1995 + Yun Sung / Soft Vision + + + + + + + + + + + + + + + Magix / Rock + 1995 + Yun Sung + + + + + + + + + + + + + + + Magic Bubble + Yun Sung + + + + + + + + + + + + + + + + + + + Shocking + 1997 + Yun Sung + + + + + + + + + + + + + + + + Blue Print (Midway) + 1982 + [Zilec] Bally Midway + + + + + + + + + + + + + + + + + + + Blue Print (Jaleco) + 1982 + [Zilec] Jaleco + + + + + + + + + + + + + + + + + + + Saturn + 1983 + [Zilec] Jaleco + + + + + + + + + + + + + + + + + + + + Go Go! Mile Smile + 1995 + Fuuki + + + + + + + + + + + + + + + + + + + Susume! Mile Smile (Japan) + 1995 + Fuuki + + + + + + + + + + + + + + + + + + + Gyakuten!! Puzzle Bancho (Japan) + 1996 + Fuuki + + + + + + + + + + + + + + + + + Dragon Master + 1994 + Unico + + + + + + + + + + + + + + + + + + Burglar X + 1997 + Unico Electronics + + + + + + + + + + + + + + + + + + + + + + + + + Zero Point + 1998 + Unico Electronics + + + + + + + + + + + + + + + + + Zero Point 2 + 1999 + Unico Electronics + + + + + + + + + + + + + + + + + + + The Legend of Silkroad + 1999 + Unico + + + + + + + + + + + + + + + + + + + + + + + Stagger I (Japan) + 1998 + Afega + + + + + + + + + + + + + + Red Hawk (US) + 1997 + Afega + + + + + + + + + + + + + + Sen Jin - Guardian Storm (Korea) + 1998 + Afega + + + + + + + + + + + + + + + Bubble 2000 + 1998 + Tuning + + + + + + + + + + + + + + + + + + + + Multi Champ (Korea) + 1998 + ESD + + + + + + + + + + + + + + + + + + + + + + + + Head Panic (Korea?) + 2000 + ESD / Fuuki + + + + + + + + + + + + + + + + Royal Mahjong (Japan) + 1982 + Falcon + + + + + + + + + + + + Watashiha Suzumechan (Japan) + 1986 + Dyna Electronics + + + + + + + + + + + + + + + + + Hana Yayoi (Japan) + 1987 + Dyna Electronics + + + + + + + + + + + + + + + + + + Don Den Mahjong [BET] (Japan) + 1986 + Dyna Electronics + + + + + + + + + + + Hana Fubuki [BET] (Japan) + 1987 + Dynax + + + + + + + + + + + + + + Mahjong Diplomat [BET] (Japan) + 1987 + Dynax + + + + + + + + + + Untouchable (Japan) + 1987 + Dynax + + + + + + + + + + + + + + + + + + + Tonton [BET] (Japan) + 1987 + Dynax + + + + + + + + + Hana no Mai (Japan) + 1988 + Dynax + + + + + + + + + + + + + + + + + + + + + Mahjong Studio 101 [BET] (Japan) + 1988 + Dynax + + + + + + + + + + Hana Kochou [BET] (Japan) + 1989 + Dynax + + + + + + + + + + + + + + + + + + Mahjong Derringer (Japan) + 1989 + Dynax + + + + + + + + + + + + Dragon Punch (Japan) + 1989 + Dynax + + + + + + + + + + + + + + + Mahjong Friday (Japan) + 1989 + Dynax + + + + + + + + + + + + + Sports Match + 1989 + Dynax (Fabtek license) + + + + + + + + + + Maya + 1994 + Promat + + + + + + + + + + + + Mahjong Dial Q2 (Japan) + 1991 + Dynax + + + + + + + + + + + + + + Quiz Channel Question (Ver 1.00) (Japan) + 1993 + Nakanihon + + + + + + + + + + + + + + + + Quiz Channel Question (Ver 1.23) (Taiwan?) + 1993 + [Nakanihon] (Laxan license) + + + + + + + + + + + + + + + + + + Rong Rong (Germany) + 1994 + Nakanihon + + + + + + + + + + + + + Don Den Lover Vol. 1 (Hong Kong) + 1996 + Dynax + + + + + + + + + + + + + + + + Billiard Academy Real Break (Japan) + 1998 + Nakanihon + + + + + + + + + + + + + + + + + + New York New York + 1980 + Sigma Ent. Inc. + + + + + + + + + + + + + + + + + + + + + + New York New York (Gottlieb) + 1980 + Sigma Ent. Inc. (Gottlieb license) + + + + + + + + + + + + + + + + + + + + + + Waga Seishun no Arcadia + 1980 + Sigma Ent. Inc. + + + + + + + + + + + + + + + + + + + + + + Spiders (set 1) + 1981 + Sigma Ent. Inc. + + + + + + + + + + + + + + + + + Spiders (set 2) + 1981 + Sigma Ent. Inc. + + + + + + + + + + + + + + + + + IQ-Block + 1993 + IGS + + + + + + + + + + + + Oriental Legend / Xi Yo Gi Shi Re Zuang (ver. 126) + 1997 + IGS + + + + + + + + + + + + + + + + + + + Oriental Legend / Xi Yo Gi Shi Re Zuang (ver. 112) + 1997 + IGS + + + + + + + + + + + + + + + + + + + Oriental Legend / Xi Yo Gi Shi Re Zuang (ver. 112, Chinese Board) + 1997 + IGS + + + + + + + + + + + + + + + + + + + Zhong Guo Long II (ver. 100C, China) + 1997 + IGS + + + + + + + + + + + Knights of Valour / Sangoku Senki (ver. 117) + 1999 + IGS + + + + + + + + + + + + + + + + Knights of Valour Plus / Sangoku Senki Plus (ver. 119) + 1999 + IGS + + + + + + + + + + + + + + + + Knights of Valour / Sangoku Senki (ver. 115) + 1999 + IGS + + + + + + + + + + + + + + + + Hit Me + 1976 + RamTek + + + + + + + + + Barricade + 1976 + RamTek + + + + + + + + + Brickyard + 1976 + RamTek + + + + + + + + + Star Cruiser + 1977 + Ramtek + + + + + + + + + + + + + + + + + + + + + Battle Cross + 1982 + Omori Electric + + + + + + + + + + + + + + + + Car Jamboree + 1983 + Omori Electric + + + + + + + + + + + + + + + + + + + + + + + + Popper + 1983 + Omori Electric Co., Ltd. + + + + + + + + + + + + + + + + Speed Spin + 1994 + TCH + + + + + + + + + + + + + + + Kick Goal + 1995 + TCH + + + + + + + + + + + + Super Duper Casino (California V3.2) + 1987 + U.S. Games + + + + + + + + + Super Ten V8.2 + 1988 + U.S. Games + + + + + + + + + + Super Ten V8.3 + 1988 + U.S. Games + + + + + + + + + + Super Ten V8.3X + 1988 + U.S. Games + + + + + + + + + + Games V18.7C + 1991 + U.S. Games + + + + + + + + + + Games V25.4X + 1992 + U.S. Games + + + + + + + + + + Mermaid + 1982 + [Sanritsu] Rock-ola + + + + + + + + + + + + + + + + + + + + + + + + Dr. Micro + 1983 + Sanritsu + + + + + + + + + + + + + + + + + + + + + + + + Appoooh + 1984 + [Sanritsu] Sega + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bank Panic + 1984 + [Sanritsu] Sega + + + + + + + + + + + + + + + + + + + + + + Mahjong Kyou Jidai (Japan) + 1986 + Sanritsu + + + + + + + + + + + + + + + + + + + + Kikiippatsu Mayumi-chan (Japan) + 1988 + [Sanritsu] Victory L.L.C. + + + + + + + + + + + + + Battle Toads + 1994 + Rare + + + + + + + + + + Killer Instinct (v1.0) + 1994 + Rare + + + + + + + + + + + + + + + + Killer Instinct 2 (v2.1) + 1994 + Rare + + + + + + + + + + + + + + + + Gigas (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + Gigas Mark II (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Oigas (bootleg) + 1986 + bootleg + + + + + + + + + + + + + + + + + + + + + + + Perfect Billiard + 1987 + Nihon System + + + + + + + + + + + + + + + + + + + + + + + Perfect Billiard (Sega) + 1987 + Nihon System + + + + + + + + + + + + + + + + + + + + + + + Free Kick + 1987 + Nihon System (Sega license) + + + + + + + + + + + + + + + + + + + + + + Free Kick (bootleg) + 1987 + bootleg + + + + + + + + + + + + + + + + + + + + + + Real Mahjong Haihai (Japan) + 1985 + Alba + + + + + + + + + + + + + + + + + + + Real Mahjong Haihai [BET] (Japan) + 1985 + Alba + + + + + + + + + + + + + + + + + + + Real Mahjong Haihai Jinji Idou Hen (Japan) + 1986 + Alba + + + + + + + + + + + + + + + + + + + Real Mahjong Haihai Seichouhen (Japan) + 1986 + Visco + + + + + + + + + + + + + + + + + + + + The Mah-jong (Japan) + 1987 + Visco + + + + + + + + + + + + + + + + + + + + Hanaroku + 1988 + Alba + + + + + + + + + + + + Mahjong Hourouki Part 1 - Seisyun Hen (Japan) + 1987 + Home Data + + + + + + + + + + + + + + + Mahjong Hourouki Gaiden (Japan) + 1987 + Home Data + + + + + + + + + + + + + + + Mahjong Hourouki Okite (Japan) + 1988 + Home Data + + + + + + + + + + + + + + + + + Mahjong Clinic (Japan) + 1988 + Home Data + + + + + + + + + + + + + + + + + Mahjong Rokumeikan (Japan) + 1988 + Home Data + + + + + + + + + + + + + + + + + Reikai Doushi (Japan) + 1988 + Home Data + + + + + + + + + + + + + + + + + + + + + Mahjong Kojinkyouju (Private Teacher) (Japan) + 1989 + Home Data + + + + + + + + + + + + + + + + + + + + Mahjong Vitamin C (Japan) + 1989 + Home Data + + + + + + + + + + + + + + + + + + + + Mahjong-yougo no Kisotairyoku (Japan) + 1989 + Home Data + + + + + + + + + + + + + + + + + + + + Mahjong Lemon Angel (Japan) + 1990 + Home Data + + + + + + + + + + + + + + + + + + + + Mahjong Kinjirareta Asobi (Japan) + 1991 + Home Data + + + + + + + + + + + + + + + + + + + + Mahjong Jogakuen (Japan) + Windom + + + + + + + + + + + + + + + + + + + + Mahjong Ikaga Desu ka (Japan) + Mitchell + + + + + + + + + + + + + + + + + + + + Ultimate Tennis + 1993 + Art & Magic + + + + + + + + + + Cheese Chase + 1994 + Art & Magic + + + + + + + + + + + Stone Ball (4 Players) + 1994 + Art & Magic + + + + + + + + + + + Stone Ball (2 Players) + 1994 + Art & Magic + + + + + + + + + + + Dynamic Ski + 1984 + Taiyo + + + + + + + + + + + + + + + + + + + + + + Chinese Hero + 1984 + Taiyo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shanghai Kid + 1985 + Taiyo (Data East license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hokuha Syourin Hiryu no Ken + 1985 + [Nihon Game] (Taito license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Astro Invader + 1980 + Stern + + + + + + + + + + + + + + + + + + + + + + Kamikaze + 1979 + Leijac + + + + + + + + + + + + + + + + + + + Space King 2 + 1979 + Konami + + + + + + + + + + + + + + + + + + + + + Space Intruder + 1980 + Shoei + + + + + + + + + + + + + + + + + + + + + Space Firebird (Nintendo) + 1980 + Nintendo + + + + + + + + + + + + + + + + + + + Space Firebird (Gremlin) + 1980 + Gremlin + + + + + + + + + + + + + + + + + + + Space Firebird (bootleg) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + Space Bird (bootleg) + 1980 + bootleg + + + + + + + + + + + + + + + + + + + Space Demon + 1980 + Nintendo (Fortrek license) + + + + + + + + + + + + + + + + + + + Omega Race + 1981 + Midway + + + + + + + + + + + + + + D-Day + 1982 + Olympia + + + + + + + + + + + + + + + + + + + + + + D-Day (Centuri) + 1982 + Olympia (Centuri license) + + + + + + + + + + + + + + + + + + + + + + Hexa + D. R. Korea + + + + + + + + + + + + + Space Tactics + 1981 + Sega + + + + + + + + + + + + + + + + Exterminator + 1989 + Gottlieb / Premier Technology + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of Boxer (English) + 1985 + Woodplace Inc. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ring King (US set 1) + 1985 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + Ring King (US set 2) + 1985 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + Ring King (US set 3) + 1985 + Data East USA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ambush + 1983 + Nippon Amuse Co-Ltd + + + + + + + + + + + + + + + + Ambush (Tecfri) + 1983 + Tecfri + + + + + + + + + + + + + + + + Homo + 1987 + bootleg + + + + + + + + + + + + + + + + + + + Aztarac + 1983 + Centuri + + + + + + + + + + + + + + + + + + + + + + + Mole Attack + 1982 + Yachiyo Electronics, Ltd. + + + + + + + + + + + + + + The Hand + 1981 + T.I.C. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Got-Ya (12/24/1981, prototype?) + 1981 + Game-A-Tron + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mr. Jong (Japan) + 1983 + Kiwako + + + + + + + + + + + + + + Crazy Blocks + 1983 + Kiwako (ECI license) + + + + + + + + + + + + + + BlockBuster + 1983 + Kiwako (ECI license) + + + + + + + + + + + + + + Poly-Play + 1985 + VEB Polytechnik Karl-Marx-Stadt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + American Speedway (set 1) + 1987 + Enerdyne Technologies, Inc. + + + + + + + + + + + + + American Speedway (set 2) + 1987 + Enerdyne Technologies, Inc. + + + + + + + + + + + + + Othello Derby (Japan) + 1995 + Sunwise + + + + + + + + + Mosaic + 1990 + Space + + + + + + + + + + + + + + Mosaic (Fuuki) + 1990 + Space (Fuuki license) + + + + + + + + + + + + + + Golden Fire II + 1992 + Topis Corp + + + + + + + + + + + + + + Super Cross 2 (Japan) + 1986 + GM Shoji + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mug Smashers + Electronic Devices (Italy) / 3D Games (England) + + + + + + + + + + + + + + + + + + + + + + Steel Force + 1994 + Electronic Devices (Italy) / Ecogames S.L. (Spain) + + + + + + + + + + + + + + + + Fantasy Land + Electronic Devices Italy + + + + + + + + + + + + + + + + + + + + + + + Galaxy Gunners + 1989 + Electronic Devices Italy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Grand Cross + 1994 + Excellent System + + + + + + + + + + + + + Aquarium (Japan) + 1996 + Excellent System + + + + + + + + + + + + + + + + Police Trainer (Rev 1.3) + 1996 + P&P Marketing + + + + + + + + + + + + + + + Police Trainer (Rev 1.1) + 1996 + P&P Marketing + + + + + + + + + + + + + + + Police Trainer (Rev 1.3B) + 1996 + P&P Marketing + + + + + + + + + + + + + + + Sharpshooter (Rev 1.7) + 1998 + P&P Marketing + + + + + + + + + + + + + + + + + + + Pass + 1992 + Oksan + + + + + + + + + + + + + + + + News + 1993 + Poby / Virus + + + + + + + + + Taxi Driver + 1984 + Graphic Techno + + + + + + + + + + + + + + + + + + + + + + + Xyonix + 1989 + Philko Corp. + + + + + + + + + + Find Out + 1987 + Elettronolo + + + + + + + + + + + + + Dribbling + 1983 + Model Racing + + + + + + + + + + + + + + Dribbling (Olympia) + 1983 + Model Racing (Olympia license) + + + + + + + + + + + + + + Ace + 1976 + Allied Leisure + + + + + + + + + + Clay Shoot + 1979 + Allied Leisure + + + + + + + + + Pirates + 1994 + NIX + + + + + + + + + + + + + + + + Fit of Fighting + bootleg + + + + + + + + + + + + + + + + + + + + + The History of Martial Arts + bootleg + + + + + + + + + + + + + + + + + + + + + Untitled Fighter 'BB' (prototype) + unknown + + + + + + + + + + + + + + + + + + + + + + + + + Flower + 1986 + Komax + + + + + + + + + + + + + + + + + + + + + + Diver Boy + 1992 + Electronic Devices + + + + + + + + + + + + + + + + + Beam Invader + Tekunon Kougyou + + + + + + + + + + Magical Cat Adventure + 1993 + Wintechno + + + + + + + + + + + + + + + + + + + + Magical Cat Adventure (Japan) + 1993 + Wintechno + + + + + + + + + + + + + + + + + + + + Nostradamus + 1993 + Face + + + + + + + + + + + + + + + + + + + + Nostradamus (Japan) + 1993 + Face + + + + + + + + + + + + + + + + + + + + Nostradamus (Korea) + 1993 + Face + + + + + + + + + + + + + + + + + + + + 4 En Raya + 1990 + IDSA + + + + + + + + + + + One Shot One Kill + unknown + + + + + + + + + + + + + + + + + + + + + Mad Donna (set 1) + 1995 + Tuning + + + + + + + + + + + + + + + + + + + Mad Donna (set 2) + 1995 + Tuning + + + + + + + + + + + + + + + + + + + Tugboat + 1982 + ETM + + + + + + + + + + + + + + + + + Got-cha + 1997 + Dongsung + + + + + + + + + + + + + + + + + + + Gumbo + 1994 + Min Corp. + + + + + + + + + + + + Triv Quiz + 1984 + Status Games + + + + + + + + + + + + + + + + + (Status) Triv Two + 1984 + Status Games + + + + + + + + + + + + + + + + + Super Triv II + 1986 + Status Games + + + + + + + + + + + + + + + + + + Tickee Tickats + 1994 + Raster Elite + + + + + + + + + + Crowns Golf (set 1) + 1984 + Nasco Japan + + + + + + + + + + + + + + + + + + + + + + + Crowns Golf (set 2) + 1984 + Nasco Japan + + + + + + + + + + + + + + + + + + + + + + + Champion Golf (bootleg) + 1984 + Nasco Japan + + + + + + + + + + + + + + + + + + + + + + + Truco-Tron + Playtronic SRL + + + + + + The Deep (Japan) + 1987 + Woodplace + + + + + + + + + + + + + + + + + + + + + + Run Deep + 1988 + Cream + + + + + + + + + + + + + + + + + + + + + + Wall Crash + 1984 + Midcoin + + + + + + + + + + + Sky Army + 1982 + Shoei + + + + + + + + + + + + + + Lethal Justice + 1996 + The Game Room + + + + + + + + + + + + + + + + + + Egg Venture + 1997 + The Game Room + + + + + + + + + + + + + + + + + + Egg Venture Deluxe + 1997 + The Game Room + + + + + + + + + + + + + + + + + + Rotary Fighter + Unknown + + + + + + + + + + + + + + + + + + + + + NAM-1975 + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Baseball Stars Professional + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Player's Golf + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mahjong Kyoretsuden + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magician Lord (set 1) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magician Lord (set 2) + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Riding Hero (set 1) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Riding Hero (set 2) + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Alpha Mission II / ASO II - Last Guardian + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Combat + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Cyber-Lip + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Super Spy + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mutation Nation + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters (set 1) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters (set 2) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku / Sengoku Denshou (set 1) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku / Sengoku Denshou (set 2) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (set 1) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Burning Fight (set 2) + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + League Bowling + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ghost Pilots + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzled / Joy Joy Kid + 1990 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blue's Journey / Raguy + 1990 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Daisousa Sen - The Last Count Down + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Resort + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Eight Man + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Minnasanno Okagesamadesu + 1990 + Monolith Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Legend of Success Joe / Ashitano Joe Densetsu + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2020 Super Baseball (set 1) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2020 Super Baseball (set 2) + 1991 + SNK / Pallas + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Soccer Brawl + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Robo Army + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury - King of Fighters / Garou Densetsu - shukumei no tatakai + 1991 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Football Frenzy + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bakatonosama Mahjong Manyuki + 1991 + Monolith Corp. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Crossed Swords + 1991 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Thrash Rally + 1991 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + King of the Monsters 2 - The Next Thing + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 2 / Sengoku Denshou 2 + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Baseball Stars 2 + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz Meitantei Neo & Geo - Quiz Daisousa Sen part 2 + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 3 Count Bout / Fire Suplex + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting / Ryuuko no Ken + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown / Samurai Spirits + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Top Hunter - Roddy & Cathy + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 2 / Garou Densetsu 2 - arata-naru tatakai + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jyanshin Densetsu - Quest of Jongmaster + 1994 + Aicom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Andro Dunos + 1992 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Commando + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Viewpoint + 1992 + Sammy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sidekicks / Tokuten Ou + 1992 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes (set 1) + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes (set 2) + 1992 + Alpha Denshi Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '94 + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 2 / Ryuuko no Ken 2 + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 + 1993 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury Special / Garou Densetsu Special + 1993 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Savage Reign / Fu'un Mokushiroku - kakutou sousei + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fight Fever / Crystal Legacy + 1994 + Viccom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sidekicks 2 - The World Championship / Tokuten Ou 2 - real fight football + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Spin Master / Miracle Adventure + 1993 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown II / Shin Samurai Spirits - Haohmaru jigokuhen + 1994 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes 2 Jet + 1994 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Windjammers / Flying Power Disc + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Karnov's Revenge / Fighter's History Dynamite + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gururin + 1994 + Face + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Power Spikes II + 1994 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - haruka-naru tatakai + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Panic Bomber + 1994 + Eighting / Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku + 1994 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aero Fighters 2 / Sonic Wings 2 + 1994 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zed Blade / Operation Ragnarok + 1994 + NMK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Galaxy Fight - Universal Warriors + 1995 + Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Street Hoop / Street Slam / Dunk Dream + 1994 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Quiz King of Fighters + 1995 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Sidekicks 3 - The Next Glory / Tokuten Ou 3 - eikoue no michi + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Double Dragon (Neo-Geo) + 1995 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble / Bust-A-Move (Neo-Geo) + 1994 + Taito + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (set 1) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '95 (set 2) + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tecmo World Soccer '96 + 1996 + Tecmo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown III / Samurai Spirits - Zankurou Musouken + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stakes Winner / Stakes Winner - GI kinzen seihae no michi + 1995 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pulstar + 1995 + Aicom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + World Heroes Perfect + 1995 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den + 1995 + Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Bomberman + 1997 + Hudson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Voltage Fighter - Gowcaizer / Choujin Gakuen Gowcaizer + 1995 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury / Real Bout Garou Densetsu + 1995 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Aero Fighters 3 / Sonic Wings 3 + 1995 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Turf Masters / Big Tournament Golf + 1996 + Nazca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug - Super Vehicle-001 + 1996 + Nazca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle De Pon! + 1995 + Taito (Visco license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Syougi No Tatsujin - Master of Syougi + 1995 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chibi Marukochan Deluxe Quiz + 1995 + Takara + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Mr. Do! + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu + 1996 + Technos + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Goal! Goal! Goal! + 1995 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Over Top + 1996 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo Drift Out - New Technology + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '96 + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ultimate 11 - The SNK Football Championship / Tokuten Ou - Honoo no Libero, The + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Kizuna Encounter - Super Tag Battle / Fu'un Super Tag Battle + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ninja Master's - haoh-ninpo-cho + 1996 + ADK / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ragnagard / Shin-Oh-Ken + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Pleasure Goal / Futsal - 5 on 5 Mini Soccer + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magical Drop II + 1996 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special + 1996 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Twinkle Star Sprites + 1996 + ADK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Waku Waku 7 + 1996 + Sunsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stakes Winner 2 + 1996 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breakers + 1996 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Money Puzzle Exchanger / Money Idol Exchanger + 1997 + Face + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (set 1) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '97 (set 2) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Magical Drop III + 1997 + Data East Corporation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Blade / Bakumatsu Roman - Gekka no Kenshi, The (set 1) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Blade / Bakumatsu Roman - Gekka no Kenshi, The (set 2) + 1997 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle De Pon! R! + 1997 + Taito (Visco license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Irritating Maze / Ultra Denryu Iraira Bou + 1997 + SNK / Saurus + + + + + + + + + + + + + + + + + + + + + + + + Pop 'n Bounce / Gapporin + 1997 + Video System Co. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shock Troopers (set 1) + 1997 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shock Troopers (set 2) + 1997 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Blazing Star + 1998 + Yumekobo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - the newcomers (set 1) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - the newcomers (set 2) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 2 - Super Vehicle-001/II + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (alt m1) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '98 - The Slugfest / King of Fighters '98 - dream match never ends (encrypted?) + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi, The + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo-Geo Cup '98 - The Road to the Victory + 1998 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Breakers Revenge + 1998 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Shock Troopers - 2nd Squad + 1998 + Saurus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Battle Flip Shot + 1998 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo) + 1999 + Taito (SNK license) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Captain Tomaday + 1999 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug X - Super Vehicle-001 + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (earlier) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (not encrypted) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters '99 - Millennium Battle (prototype) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Musashi Ganryuuki + 1999 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (set 1) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (set 2) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Garou - Mark of the Wolves (prototype) + 1999 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Strikers 1945 Plus + 1999 + Psikyo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Prehistoric Isle 2 + 1999 + Yumekobo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Metal Slug 3 (not encrypted) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2000 (not encrypted) + 2000 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Bang Bead + 2000 + Visco + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Nightmare in the Dark + 2000 + Eleven / Gavaking + + + + + + + + + + + + + + + + + + + + + + + + + + + + Zupapa! + 2001 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sengoku 3 + 2001 + SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The King of Fighters 2001 + 2001 + Eolith / SNK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neo-Geo + 1990 + SNK + + + + + + + + + + + + + + + + + + + + CVS Bios + 1981 + Century Electronics + + + + + + Cassette System + 1981 + DECO + + + + + + + + + Playchoice-10 + 1986 + Nintendo of America + + + + + + + + + + PGM (Polygame Master) System BIOS + 1997 + IGS + + + + + + Super Kaneko Nova System BIOS + 1996 + Kaneko + + + + + + ST-V Bios + 1996 + Sega + + + + + + + System GX + 1994 + Konami + + +