From e782fa2eb20f35799bf9630ac2c2f573a862dd06 Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Sat, 25 Jan 2025 09:58:12 +0800 Subject: [PATCH] =?UTF-8?q?tools=20=E5=BD=92=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AxibugEmuOnline.sln | 25 + Tools/CheckFilesExist/App.config | 6 + Tools/CheckFilesExist/CheckFilesExist.csproj | 54 + Tools/CheckFilesExist/Program.cs | 28 + .../Properties/AssemblyInfo.cs | 33 + Tools/HtmlTable/FileHelper.cs | 62 + Tools/HtmlTable/HtmlTable.csproj | 14 + Tools/HtmlTable/Program.cs | 142 + Tools/MAMEHashTool/MAMEHashTool.csproj | 16 + Tools/MAMEHashTool/Program.cs | 297 + .../PublishProfiles/FolderProfile.pubxml | 13 + .../PublishProfiles/FolderProfile.pubxml.user | 10 + Tools/MAMEHashTool/mame.xml | 8046 +++++++++++++++++ 13 files changed, 8746 insertions(+) create mode 100644 Tools/CheckFilesExist/App.config create mode 100644 Tools/CheckFilesExist/CheckFilesExist.csproj create mode 100644 Tools/CheckFilesExist/Program.cs create mode 100644 Tools/CheckFilesExist/Properties/AssemblyInfo.cs create mode 100644 Tools/HtmlTable/FileHelper.cs create mode 100644 Tools/HtmlTable/HtmlTable.csproj create mode 100644 Tools/HtmlTable/Program.cs create mode 100644 Tools/MAMEHashTool/MAMEHashTool.csproj create mode 100644 Tools/MAMEHashTool/Program.cs create mode 100644 Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml create mode 100644 Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml.user create mode 100644 Tools/MAMEHashTool/mame.xml diff --git a/AxibugEmuOnline.sln b/AxibugEmuOnline.sln index 06886ec7..6d7dbbc5 100644 --- a/AxibugEmuOnline.sln +++ b/AxibugEmuOnline.sln @@ -11,6 +11,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualNes.Core", "Core\Vir EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AxibugEmuOnline.GameScreenConvert", "AxibugEmuOnline.GameScreenConvert\AxibugEmuOnline.GameScreenConvert.csproj", "{A70AD410-E2F2-4792-AEC1-A0DB83392E52}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{516B4BC8-EC46-484F-A83A-01493A480FB1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CheckFilesExist", "Tools\CheckFilesExist\CheckFilesExist.csproj", "{39F90FC2-0EE9-4663-97CF-985FAEBB91A2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HtmlTable", "Tools\HtmlTable\HtmlTable.csproj", "{A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAMEHashTool", "Tools\MAMEHashTool\MAMEHashTool.csproj", "{FA3B23B9-B8A5-422F-BC85-64069174A99D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -33,10 +41,27 @@ Global {A70AD410-E2F2-4792-AEC1-A0DB83392E52}.Debug|Any CPU.Build.0 = Debug|Any CPU {A70AD410-E2F2-4792-AEC1-A0DB83392E52}.Release|Any CPU.ActiveCfg = Release|Any CPU {A70AD410-E2F2-4792-AEC1-A0DB83392E52}.Release|Any CPU.Build.0 = Release|Any CPU + {39F90FC2-0EE9-4663-97CF-985FAEBB91A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {39F90FC2-0EE9-4663-97CF-985FAEBB91A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39F90FC2-0EE9-4663-97CF-985FAEBB91A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {39F90FC2-0EE9-4663-97CF-985FAEBB91A2}.Release|Any CPU.Build.0 = Release|Any CPU + {A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB}.Release|Any CPU.Build.0 = Release|Any CPU + {FA3B23B9-B8A5-422F-BC85-64069174A99D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FA3B23B9-B8A5-422F-BC85-64069174A99D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FA3B23B9-B8A5-422F-BC85-64069174A99D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FA3B23B9-B8A5-422F-BC85-64069174A99D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {39F90FC2-0EE9-4663-97CF-985FAEBB91A2} = {516B4BC8-EC46-484F-A83A-01493A480FB1} + {A29088C4-FAFA-4F8D-B9CC-57BB8CF454CB} = {516B4BC8-EC46-484F-A83A-01493A480FB1} + {FA3B23B9-B8A5-422F-BC85-64069174A99D} = {516B4BC8-EC46-484F-A83A-01493A480FB1} + EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {979933DC-FDAB-4ED1-974D-61FC7F814963} EndGlobalSection diff --git a/Tools/CheckFilesExist/App.config b/Tools/CheckFilesExist/App.config new file mode 100644 index 00000000..4bfa0056 --- /dev/null +++ b/Tools/CheckFilesExist/App.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<configuration> + <startup> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> + </startup> +</configuration> diff --git a/Tools/CheckFilesExist/CheckFilesExist.csproj b/Tools/CheckFilesExist/CheckFilesExist.csproj new file mode 100644 index 00000000..4858d307 --- /dev/null +++ b/Tools/CheckFilesExist/CheckFilesExist.csproj @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{39F90FC2-0EE9-4663-97CF-985FAEBB91A2}</ProjectGuid> + <OutputType>Exe</OutputType> + <RootNamespace>CheckFilesExist</RootNamespace> + <AssemblyName>CheckFilesExist</AssemblyName> + <TargetFrameworkVersion>v4.8</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> + <Deterministic>true</Deterministic> + <TargetFrameworkProfile /> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Program.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="App.config" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> +</Project> \ No newline at end of file diff --git a/Tools/CheckFilesExist/Program.cs b/Tools/CheckFilesExist/Program.cs new file mode 100644 index 00000000..54fe7fb6 --- /dev/null +++ b/Tools/CheckFilesExist/Program.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.IO; + +namespace CheckFilesExist +{ + internal class Program + { + static void Main(string[] args) + { + string[] checklist = File.ReadAllLines("checkfiles.txt"); + + List<string> dontExist = new List<string>(); + Console.WriteLine("不存在列表:"); + foreach (var item in checklist) + { + var path = System.Net.WebUtility.UrlDecode(item); + if (!File.Exists(path)) + { + Console.WriteLine(path); + dontExist.Add(path); + } + } + Console.WriteLine($"完毕,共{dontExist.Count}个不存在"); + Console.ReadLine(); + } + } +} diff --git a/Tools/CheckFilesExist/Properties/AssemblyInfo.cs b/Tools/CheckFilesExist/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..7e2d143c --- /dev/null +++ b/Tools/CheckFilesExist/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的一般信息由以下 +// 控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("CheckFilesExist")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("CheckFilesExist")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 会使此程序集中的类型 +//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 +//请将此类型的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("39f90fc2-0ee9-4663-97cf-985faebb91a2")] + +// 程序集的版本信息由下列四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Tools/HtmlTable/FileHelper.cs b/Tools/HtmlTable/FileHelper.cs new file mode 100644 index 00000000..4e56b86a --- /dev/null +++ b/Tools/HtmlTable/FileHelper.cs @@ -0,0 +1,62 @@ +using System.Text; + +namespace HtmlTable +{ + public class FileHelper + { + public static bool LoadFile(string FilePath, out byte[] data) + { + using (FileStream fs = new FileStream(FilePath, FileMode.Open, FileAccess.Read)) + { + try + { + byte[] buffur = new byte[fs.Length]; + fs.Read(buffur, 0, (int)fs.Length); + fs.Close(); + data = buffur; + return true; + } + catch (Exception ex) + { + data = null; + return false; + } + } + } + + public static string[] GetDirFile(string Path) + { + return Directory.GetFiles(Path); + } + + public static byte[] String2Byte(string value) + { + return Encoding.Default.GetBytes(value); + } + public static bool SaveFile(string FilePath, byte[] buffer) + { + try + { + //创建一个文件流 + using (FileStream wfs = new FileStream(FilePath, FileMode.Create)) + { + //将byte数组写入文件中 + wfs.Write(buffer, 0, buffer.Length); + //所有流类型都要关闭流,否则会出现内存泄露问题 + wfs.Close(); + return true; + } + } + catch + { + return false; + } + } + + + public static void SaveFile(string FilePath, string[] strArr) + { + System.IO.File.WriteAllLines(FilePath, strArr); + } + } +} diff --git a/Tools/HtmlTable/HtmlTable.csproj b/Tools/HtmlTable/HtmlTable.csproj new file mode 100644 index 00000000..cdf3c42d --- /dev/null +++ b/Tools/HtmlTable/HtmlTable.csproj @@ -0,0 +1,14 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net8.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="HtmlAgilityPack" Version="1.11.61" /> + </ItemGroup> + +</Project> diff --git a/Tools/HtmlTable/Program.cs b/Tools/HtmlTable/Program.cs new file mode 100644 index 00000000..e9b37dc0 --- /dev/null +++ b/Tools/HtmlTable/Program.cs @@ -0,0 +1,142 @@ +using HtmlAgilityPack; +using System.Text; +using System.Xml; + +namespace HtmlTable +{ + internal class Program + { + static string loc = Path.GetDirectoryName(AppContext.BaseDirectory) + "\\"; + const string InDir = "Input"; + const string OutDir = "Out"; + static void Main(string[] args) + { + if (!Directory.Exists(loc + InDir)) + { + Console.WriteLine("Input文件不存在"); + Console.ReadLine(); + return; + } + + if (!Directory.Exists(loc + OutDir)) + { + Console.WriteLine("Out文件不存在"); + Console.ReadLine(); + return; + } + + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + string[] files = FileHelper.GetDirFile(loc + InDir); + Console.WriteLine($"共{files.Length}个文件,是否处理? (y/n)"); + + string yn = Console.ReadLine(); + if (yn.ToLower() != "y") + return; + + int index = 0; + int errcount = 0; + List<string> outline = new List<string>(); + for (int i = 0; i < files.Length; i++) + { + string FileName = files[i].Substring(files[i].LastIndexOf("\\")); + + if (!FileName.ToLower().Contains(".htm")) + { + continue; + } + index++; + + Console.WriteLine($">>>>>>>>>>>>>>开始处理 第{index}个文件 {FileName}<<<<<<<<<<<<<<<<<<<"); + outline.AddRange(GetToData(File.ReadAllText(files[i],System.Text.Encoding.GetEncoding("gb2312")))); + Console.WriteLine($">>>>>>>>>>>>>>成功处理 第{index}个"); + } + + string newfileName = "out.csv"; + string outstring = loc + OutDir + "\\" + newfileName; + FileHelper.SaveFile(outstring, outline.ToArray()); + + + Console.WriteLine($"已处理{files.Length}个文件,其中{errcount}个失败"); + + Console.ReadLine(); + } + + static List<string> GetToData(string html) + { + List<string> result = new List<string>(); + HtmlDocument doc = new HtmlDocument(); + doc.LoadHtml(html); + + // 假设table的XPath已经给出,但这里我们直接使用根table(因为示例中只有一个) + HtmlNode table = doc.DocumentNode.SelectSingleNode("//table[@width='100%' and @border='1']"); + + if (table != null) + { + var all = table.SelectNodes("tr"); + + int Idx = 0; + // 遍历除了标题行之外的所有行 + foreach (HtmlNode row in all) // 跳过标题行 + { + Idx++; + if (Idx == 1) + continue; + // 提取游戏名称和游戏链接 + HtmlNode gameNameNode = row.SelectSingleNode("td"); + + + + if (gameNameNode != null) + { + + try + { + HtmlNode gameNode1 = row.SelectSingleNode("td[1]/div"); + if(gameNode1 == null) gameNode1 = row.SelectSingleNode("td[1]"); + string gameName = gameNode1.InnerText.Trim(); + string gameUrl = gameNode1.SelectSingleNode("a").GetAttributeValue("href", null); + + HtmlNode gameNode2 = row.SelectSingleNode("td[2]/div"); + if (gameNode2 == null) gameNode2 = row.SelectSingleNode("td[2]"); + string imgUrl = gameNode2.SelectSingleNode("a").GetAttributeValue("href", null); + + HtmlNode gameNode3 = row.SelectSingleNode("td[3]/div"); + if (gameNode3 == null) gameNode3 = row.SelectSingleNode("td[3]"); + string gameType = gameNode3.InnerText.Trim(); + + HtmlNode gameNode4 = row.SelectSingleNode("td[4]/div"); + if (gameNode4 == null) gameNode4 = row.SelectSingleNode("td[4]"); + string description = gameNode4.InnerText.Trim(); + + //// 假设图片URL、游戏类型和说明分别在第二个、第三个和第四个<td>中 + //HtmlNode imgNode = row.SelectSingleNode("td:nth-child(2) img"); + //string imgUrl = imgNode?.GetAttributeValue("src", null); + + //HtmlNode gameTypeNode = row.SelectSingleNode("td:nth-child(3)"); + //string gameType = gameTypeNode?.InnerText.Trim(); + + //HtmlNode descriptionNode = row.SelectSingleNode("td:nth-child(4)"); + //string description = descriptionNode?.InnerText.Trim(); + + string outline = $"\"{gameName}\",\"{gameUrl}\",\"{imgUrl}\",\"{gameType}\",\"{description}\""; + // 输出信息 + Console.WriteLine(outline); + + result.Add(outline); + } + catch + { + + } + + } + } + } + else + { + Console.WriteLine("未找到指定的table元素"); + } + return result; + } + } +} diff --git a/Tools/MAMEHashTool/MAMEHashTool.csproj b/Tools/MAMEHashTool/MAMEHashTool.csproj new file mode 100644 index 00000000..4510f27a --- /dev/null +++ b/Tools/MAMEHashTool/MAMEHashTool.csproj @@ -0,0 +1,16 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net9.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <None Update="mame.xml"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </None> + </ItemGroup> + +</Project> diff --git a/Tools/MAMEHashTool/Program.cs b/Tools/MAMEHashTool/Program.cs new file mode 100644 index 00000000..6d75cf28 --- /dev/null +++ b/Tools/MAMEHashTool/Program.cs @@ -0,0 +1,297 @@ +using System.Globalization; +using System.IO.Compression; +using System.Security.Cryptography; +using System.Text; +using System.Xml.Linq; + +namespace MAMEHashTool +{ + + class roomHashInfo + { + public int RomID { get; set; } + public string RomDirName { get; set; } + public string RomAllFileHash { get; set; } + public string ParentName { get; set; } + public int ParentID { get; set; } + public string desc { get; set; } + public string board { get; set; } + public string year { get; set; } + public string manufacturer { get; set; } + } + + internal class Program + { + static Dictionary<int, roomHashInfo> dict = new Dictionary<int, roomHashInfo>(); + static Dictionary<string, int> dictName2RomID = new Dictionary<string, int>(); + static string romRootDir = "G:\\MAME.Core\\roms"; + static HashSet<string> NoInDB = new HashSet<string>(); + static HashSet<string> NotfindParent = new HashSet<string>(); + static void Main(string[] args) + { + int RoomSeed = 10000; + MAMEDBHelper.LoadROMXML(File.ReadAllText("./mame.xml")); + // 获取当前程序所在目录 + string currentDirectory = romRootDir; + + // 列出当前目录下的所有文件夹 + string[] directories = Directory.GetDirectories(currentDirectory); + + // 文件夹名称 + foreach (string directory in directories) + { + // 使用Path.GetFileName来获取文件夹名称(不包含路径) + string directoryName = Path.GetFileName(directory); + Console.WriteLine($"正在处理,{RoomSeed}|{directoryName}"); + + + string[] files = Directory.GetFiles(directory); + List<byte[]> filedatas = new List<byte[]>(); + foreach (string file in files) + { + filedatas.Add(File.ReadAllBytes(file)); + } + + if (!RomInfo.dictName2Rom.ContainsKey(directoryName)) + { + if (!NoInDB.Contains(directoryName)) + NoInDB.Add(directoryName); + + Console.WriteLine($"数据库中不存在|{directoryName}"); + continue; + } + RomInfo xmlinfo = RomInfo.dictName2Rom[directoryName]; + roomHashInfo hashrom = new roomHashInfo() + { + RomID = RoomSeed, + ParentName = xmlinfo.Parent, + RomDirName = directoryName, + RomAllFileHash = FileMD5Hash(filedatas), + board = xmlinfo.Board, + desc = xmlinfo.Description, + manufacturer = xmlinfo.Manufacturer, + year = xmlinfo.Year, + }; + dict[RoomSeed] = hashrom; + dictName2RomID[hashrom.RomDirName] = RoomSeed; + //StartZip(romRootDir, directory); + RoomSeed++; + } + + foreach (var rom in dict.Values) + { + if (string.IsNullOrEmpty(rom.ParentName)) + continue; + if (!dictName2RomID.ContainsKey(rom.ParentName)) + { + Console.WriteLine($"父级{rom.ParentName}无法找到"); + if (!NotfindParent.Contains(rom.ParentName)) + NotfindParent.Add(rom.ParentName); + continue; + } + rom.ParentID = dictName2RomID[rom.ParentName]; + } + + List<string> tempOutInfoList = new List<string>(); + foreach (var rom in dict.Values) + { + string ParentID = rom.ParentID == 0 ? "" : rom.ParentID.ToString(); + tempOutInfoList.Add($"{rom.RomID}|{rom.RomDirName}|{rom.board}|{rom.year}|{rom.manufacturer}|{rom.desc}|{rom.RomAllFileHash}|{ParentID}"); + } + + Console.WriteLine($"共{NoInDB.Count}个数据库中不存在"); + tempOutInfoList.Add($"共{NoInDB.Count}个数据库中不存在"); + foreach (var name in NoInDB) + { + tempOutInfoList.Add(name); + } + Console.WriteLine($"共{NotfindParent.Count}个父级没找到"); + tempOutInfoList.Add($"共{NotfindParent.Count}个父级没找到"); + foreach (var name in NotfindParent) + { + tempOutInfoList.Add(name); + } + + try + { + File.WriteAllLines(romRootDir + "//axiromInfolist.txt", tempOutInfoList); + Console.WriteLine($"写入文件完毕"); + } + catch (Exception ex) + { + Console.WriteLine($"写入文件失败:{ex}"); + } + + Console.ReadLine(); + } + + static void StartZip(string rootPath, string subDirectory) + { + Console.WriteLine($"压缩{subDirectory}"); + string subDirectoryName = Path.GetFileName(subDirectory); // 获取子文件夹名称 + string zipFileName = Path.Combine(rootPath, subDirectoryName + ".zip"); // 构建ZIP文件名 + + // 创建ZIP文件 + using (FileStream zipStream = new FileStream(zipFileName, FileMode.Create)) + using (ZipArchive archive = new ZipArchive(zipStream, ZipArchiveMode.Create)) + { + // 遍历子文件夹中的所有文件,并将它们添加到ZIP文件中 + foreach (string filePath in Directory.GetFiles(subDirectory, "*.*", SearchOption.AllDirectories)) + { + // 获取相对于子文件夹的路径,以便在ZIP文件中保持正确的目录结构 + string relativePath = filePath.Substring(subDirectory.Length + 1); // +1 是为了排除子文件夹路径末尾的反斜杠 + + // 创建ZIP条目,使用相对于子文件夹的路径作为条目名称 + ZipArchiveEntry entry = archive.CreateEntry(relativePath, CompressionLevel.SmallestSize); + + // 打开ZIP条目以进行写入 + using (Stream entryStream = entry.Open()) + { + // 读取文件内容并写入ZIP条目 + using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read)) + { + fileStream.CopyTo(entryStream); + } + } + } + } + + Console.WriteLine($"Compressed {subDirectoryName} to {zipFileName}"); + } + + static byte[] FileMD5HashByte(byte[] data) + { + using (var md5 = MD5.Create()) + { + using (var stream = new MemoryStream(data)) + { + return md5.ComputeHash(stream); + } + } + } + + /// <summary> + /// 单个文件hash + /// </summary> + /// <param name="data"></param> + /// <returns></returns> + public static string FileMD5Hash(byte[] data) + { + byte[] hash = FileMD5HashByte(data); + var sb = new StringBuilder(hash.Length * 2); + foreach (var b in hash) + sb.AppendFormat("{0:x2}", b); + return sb.ToString(); + } + + /// <summary> + /// 多文件总hash (顺序不影响结果) + /// </summary> + /// <param name="dataList"></param> + /// <returns></returns> + public static string FileMD5Hash(List<byte[]> dataList) + { + string allhash = string.Empty; + List<string> temp = new List<string>(); + for (int i = 0; i < dataList.Count; i++) + { + if (dataList[i] == null) + continue; + temp.Add(FileMD5Hash(dataList[i])); + } + temp.Sort(); + var sb = new StringBuilder(); + for (int i = 0; i < temp.Count; i++) + { + sb.AppendLine(temp[i].ToString()); + } + + //这里用Ascll + return FileMD5Hash(Encoding.ASCII.GetBytes(sb.ToString())); + } + } + public class MAMEDBHelper + { + public static void LoadROMXML(string xmbString) + { + XElement xe = XElement.Parse(xmbString); + IEnumerable<XElement> elements = from ele in xe.Elements("game") select ele; + showInfoByElements(elements); + } + + static void showInfoByElements(IEnumerable<XElement> elements) + { + RomInfo.romList = new List<RomInfo>(); + RomInfo.dictName2Rom = new Dictionary<string, RomInfo>(); + foreach (var ele in elements) + { + RomInfo rom = new RomInfo(); + rom.Name = ele.Attribute("name").Value; + rom.Board = ele.Attribute("board").Value; + rom.Parent = ele.Element("parent").Value; + rom.Direction = ele.Element("direction").Value; + rom.Description = ele.Element("description").Value; + rom.Year = ele.Element("year").Value; + rom.Manufacturer = ele.Element("manufacturer").Value; + RomInfo.romList.Add(rom); + RomInfo.dictName2Rom[rom.Name] = rom; + //loadform.listView1.Items.Add(new ListViewItem(new string[] { rom.Description, rom.Year, rom.Name, rom.Parent, rom.Direction, rom.Manufacturer, rom.Board })); + } + } + + + } + + + public class RomInfo + { + public static List<RomInfo> romList = new List<RomInfo>(); + public static Dictionary<string, RomInfo> dictName2Rom = new Dictionary<string, RomInfo>(); + public static RomInfo Rom; + public string Name, Board; + public string Parent; + public string Direction; + public string Description; + public string Year; + public string Manufacturer; + public string M1Default, M1Stop, M1Min, M1Max, M1Subtype; + public static ushort IStop; + public RomInfo() + { + + } + public static RomInfo GetRomByName(string s1) + { + if (!dictName2Rom.TryGetValue(s1, out RomInfo info)) + return null; + return info; + } + public static string GetParent(string s1) + { + string sParent = ""; + foreach (RomInfo ri in romList) + { + if (s1 == ri.Name) + { + sParent = ri.Parent; + break; + } + } + return sParent; + } + public static List<string> GetParents(string s1) + { + string sChild, sParent; + List<string> ls1 = new List<string>(); + sChild = s1; + while (sChild != "") + { + ls1.Add(sChild); + sParent = GetParent(sChild); + sChild = sParent; + } + return ls1; + } + + } +} diff --git a/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml b/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 00000000..12cead30 --- /dev/null +++ b/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +https://go.microsoft.com/fwlink/?LinkID=208121. +--> +<Project> + <PropertyGroup> + <Configuration>Release</Configuration> + <Platform>Any CPU</Platform> + <PublishDir>bin\Release\net9.0\publish\</PublishDir> + <PublishProtocol>FileSystem</PublishProtocol> + <_TargetId>Folder</_TargetId> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml.user b/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 00000000..b84021d5 --- /dev/null +++ b/Tools/MAMEHashTool/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +https://go.microsoft.com/fwlink/?LinkID=208121. +--> +<Project> + <PropertyGroup> + <History>True|2025-01-23T09:13:53.2850370Z||;</History> + <LastFailureDetails /> + </PropertyGroup> +</Project> \ No newline at end of file diff --git a/Tools/MAMEHashTool/mame.xml b/Tools/MAMEHashTool/mame.xml new file mode 100644 index 00000000..dafa9ea7 --- /dev/null +++ b/Tools/MAMEHashTool/mame.xml @@ -0,0 +1,8046 @@ +<?xml version="1.0"?> +<mame version="1"> + <!-- <game name="rtype" board="M72"> + <parent></parent> + <direction></direction> + <description>R-Type (World)</description> + <year>1987</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtypej" board="M72"> + <parent>rtype</parent> + <direction></direction> + <description>R-Type (Japan)</description> + <year>1987</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtypejp" board="M72"> + <parent>rtype</parent> + <direction></direction> + <description>R-Type (Japan prototype)</description> + <year>1987</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtypeu" board="M72"> + <parent>rtype</parent> + <direction></direction> + <description>R-Type (US)</description> + <year>1987</year> + <manufacturer>Irem (Nintendo of America license)</manufacturer> + </game> + <game name="rtypeb" board="M72"> + <parent>rtype</parent> + <direction></direction> + <description>R-Type (World bootleg)</description> + <year>1987</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="bchopper" board="M72"> + <parent></parent> + <direction></direction> + <description>Battle Chopper</description> + <year>1987</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="mrheli" board="M72"> + <parent>bchopper</parent> + <direction></direction> + <description>Mr. HELI no Daibouken (Japan)</description> + <year>1987</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="nspirit" board="M72"> + <parent></parent> + <direction></direction> + <description>Ninja Spirit</description> + <year>1988</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="nspiritj" board="M72"> + <parent>nspirit</parent> + <direction></direction> + <description>Saigo no Nindou (Japan)</description> + <year>1988</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="imgfight" board="M72"> + <parent></parent> + <direction>270</direction> + <description>Image Fight (World, revision A)</description> + <year>1988</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="imgfightj" board="M72"> + <parent>imgfight</parent> + <direction>270</direction> + <description>Image Fight (Japan)</description> + <year>1988</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="loht" board="M72"> + <parent></parent> + <direction></direction> + <description>Legend of Hero Tonma</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="lohtj" board="M72"> + <parent>loht</parent> + <direction></direction> + <description>Legend of Hero Tonma (Japan)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="lohtb2" board="M72"> + <parent>loht</parent> + <direction></direction> + <description>Legend of Hero Tonma (Japan, bootleg with i8751)</description> + <year>1989</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="xmultiplm72" board="M72"> + <parent>xmultipl</parent> + <direction></direction> + <description>X Multiply (Japan, M72)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="dbreedm72" board="M72"> + <parent>dbreed</parent> + <direction></direction> + <description>Dragon Breed (M72 PCB version)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="gallop" board="M72"> + <parent>cosmccop</parent> + <direction></direction> + <description>Gallop - Armed Police Unit (Japan, M72)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game>--> + <game name="airduelm72" board="M72"> + <parent>airduel</parent> + <direction>270</direction> + <description>Air Duel (Japan, M72)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="dkgensanm72" board="M72"> + <parent>hharry</parent> + <direction></direction> + <description>Daiku no Gensan (Japan, M72)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="xmultipl" board="M72"> + <parent></parent> + <direction></direction> + <description>X Multiply (World, M81)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="dbreed" board="M72"> + <parent></parent> + <direction></direction> + <description>Dragon Breed (M81 PCB version)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="hharry" board="M72"> + <parent></parent> + <direction></direction> + <description>Hammerin' Harry (World, M81)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="majtitle" board="M72"> + <parent></parent> + <direction></direction> + <description>Major Title (World)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="majtitlej" board="M72"> + <parent>majtitle</parent> + <direction></direction> + <description>Major Title (Japan)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game>--> + <!--<game name="airduel" board="M72"> + <parent></parent> + <direction>270</direction> + <description>Air Duel (World, M82-A-A + M82-B-A)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game>--> + <!--<game name="rtypem82b" board="M72"> + <parent>rtype</parent> + <direction></direction> + <description>R-Type (Japan, bootleg Major Title conversion, M82)</description> + <year>2009</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="rtype2m82b" board="M72"> + <parent>rtype2</parent> + <direction></direction> + <description>R-Type II (Japan, bootleg Major Title conversion, M82)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="hharryu" board="M72"> + <parent>hharry</parent> + <direction></direction> + <description>Hammerin' Harry (US, M84)</description> + <year>1990</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="dkgensan" board="M72"> + <parent>hharry</parent> + <direction></direction> + <description>Daiku no Gensan (Japan, M84)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtype2" board="M72"> + <parent></parent> + <direction></direction> + <description>R-Type II</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtype2j" board="M72"> + <parent>rtype2</parent> + <direction></direction> + <description>R-Type II (Japan)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtype2jc" board="M72"> + <parent>rtype2</parent> + <direction></direction> + <description>R-Type II (Japan, revision C)</description> + <year>1989</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="cosmccop" board="M72"> + <parent></parent> + <direction></direction> + <description>Cosmic Cop (World)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game>--> + <game name="ltswords" board="M72"> + <parent></parent> + <direction></direction> + <description>Lightning Swords</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="kengo" board="M72"> + <parent>ltswords</parent> + <direction></direction> + <description>Ken-Go (set 1)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="kengoa" board="M72"> + <parent>ltswords</parent> + <direction></direction> + <description>Ken-Go (set 2)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="poundfor" board="M72"> + <parent></parent> + <direction>270</direction> + <description>Pound for Pound (World)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="poundforj" board="M72"> + <parent>poundfor</parent> + <direction>270</direction> + <description>Pound for Pound (Japan)</description> + <year>1990</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="poundforu" board="M72"> + <parent>poundfor</parent> + <direction>270</direction> + <description>Pound for Pound (US)</description> + <year>1990</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="lohtb" board="M72"> + <parent>loht</parent> + <direction></direction> + <description>Legend of Hero Tonma (unprotected bootleg)</description> + <year>1989</year> + <manufacturer>bootleg</manufacturer> + </game>--> + <game name="gunforce" board="M92"> + <parent></parent> + <direction></direction> + <description>Gunforce - Battle Fire Engulfed Terror Island (World)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="gunforcej" board="M92"> + <parent>gunforce</parent> + <direction></direction> + <description>Gunforce - Battle Fire Engulfed Terror Island (Japan)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="gunforceu" board="M92"> + <parent>gunforce</parent> + <direction></direction> + <description>Gunforce - Battle Fire Engulfed Terror Island (US)</description> + <year>1991</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="bmaster" board="M92"> + <parent></parent> + <direction></direction> + <description>Blade Master (World)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="crossbld" board="M92"> + <parent>bmaster</parent> + <direction></direction> + <description>Cross Blades! (Japan)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="lethalth" board="M92"> + <parent></parent> + <direction>270</direction> + <description>Lethal Thunder (World)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="thndblst" board="M92"> + <parent>lethalth</parent> + <direction>270</direction> + <description>Thunder Blaster (Japan)</description> + <year>1991</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="uccops" board="M92"> + <parent></parent> + <direction></direction> + <description>Undercover Cops (World)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="uccopsu" board="M92"> + <parent>uccops</parent> + <direction></direction> + <description>Undercover Cops (US)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="uccopsar" board="M92"> + <parent>uccops</parent> + <direction></direction> + <description>Undercover Cops - Alpha Renewal Version</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="uccopsj" board="M92"> + <parent>uccops</parent> + <direction></direction> + <description>Undercover Cops (Japan)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="mysticri" board="M92"> + <parent></parent> + <direction></direction> + <description>Mystic Riders (World)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="gunhohki" board="M92"> + <parent>mysticri</parent> + <direction></direction> + <description>Mahou Keibitai Gun Hohki (Japan)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="mysticrib" board="M92"> + <parent>mysticri</parent> + <direction></direction> + <description>Mystic Riders (bootleg?)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game>--> + <game name="majtitl2" board="M92"> + <parent></parent> + <direction></direction> + <description>Major Title 2 (World, set 1)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="majtitl2a" board="M92"> + <parent>majtitl2</parent> + <direction></direction> + <description>Major Title 2 (World, set 1, alt sound CPU)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="majtitl2b" board="M92"> + <parent>majtitl2</parent> + <direction></direction> + <description>Major Title 2 (World, set 2)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game>--> + <game name="majtitl2j" board="M92"> + <parent>majtitl2</parent> + <direction></direction> + <description>Major Title 2 (Japan)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="skingame" board="M92"> + <parent>majtitl2</parent> + <direction></direction> + <description>The Irem Skins Game (US set 1)</description> + <year>1992</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="skingame2" board="M92"> + <parent>majtitl2</parent> + <direction></direction> + <description>The Irem Skins Game (US set 2)</description> + <year>1992</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="hook" board="M92"> + <parent></parent> + <direction></direction> + <description>Hook (World)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="hooku" board="M92"> + <parent>hook</parent> + <direction></direction> + <description>Hook (US)</description> + <year>1992</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="hookj" board="M92"> + <parent>hook</parent> + <direction></direction> + <description>Hook (Japan)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="ppan" board="M92"> + <parent>hook</parent> + <direction></direction> + <description>Peter Pan (bootleg of Hook)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game>--> + <game name="rtypeleo" board="M92"> + <parent></parent> + <direction></direction> + <description>R-Type Leo (World)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="rtypeleoj" board="M92"> + <parent>rtypeleo</parent> + <direction></direction> + <description>R-Type Leo (Japan)</description> + <year>1992</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="inthunt" board="M92"> + <parent></parent> + <direction></direction> + <description>In The Hunt (World)</description> + <year>1993</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="inthuntu" board="M92"> + <parent>inthunt</parent> + <direction></direction> + <description>In The Hunt (US)</description> + <year>1993</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="kaiteids" board="M92"> + <parent>inthunt</parent> + <direction></direction> + <description>Kaitei Daisensou (Japan)</description> + <year>1993</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="nbbatman" board="M92"> + <parent></parent> + <direction></direction> + <description>Ninja Baseball Bat Man (World)</description> + <year>1993</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="nbbatmanu" board="M92"> + <parent>nbbatman</parent> + <direction></direction> + <description>Ninja Baseball Bat Man (US)</description> + <year>1993</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="leaguemn" board="M92"> + <parent>nbbatman</parent> + <direction></direction> + <description>Yakyuu Kakutou League-Man (Japan)</description> + <year>1993</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="nbbatman2bl" board="M92"> + <parent>nbbatman</parent> + <direction></direction> + <description>Ninja Baseball Bat Man II (bootleg)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game>--> + <game name="ssoldier" board="M92"> + <parent></parent> + <direction></direction> + <description>Superior Soldiers (US)</description> + <year>1993</year> + <manufacturer>Irem America</manufacturer> + </game> + <game name="psoldier" board="M92"> + <parent>ssoldier</parent> + <direction></direction> + <description>Perfect Soldiers (Japan)</description> + <year>1993</year> + <manufacturer>Irem</manufacturer> + </game> + <!-- <game name="dsoccr94j" board="M92"> + <parent>dsoccr94</parent> + <direction></direction> + <description>Dream Soccer '94 (Japan, M92 hardware)</description> + <year>1994</year> + <manufacturer>Irem</manufacturer> + </game>--> + <game name="gunforc2" board="M92"> + <parent></parent> + <direction></direction> + <description>Gun Force II (US)</description> + <year>1994</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="geostorm" board="M92"> + <parent>gunforc2</parent> + <direction></direction> + <description>Geo Storm (Japan)</description> + <year>1994</year> + <manufacturer>Irem</manufacturer> + </game> + <game name="tokio" board="Taito"> + <parent></parent> + <direction>90</direction> + <description>Tokio / Scramble Formation (newer)</description> + <year>1986</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="tokioo" board="Taito"> + <parent>tokio</parent> + <direction>90</direction> + <description>Tokio / Scramble Formation (older)</description> + <year>1986</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="tokiou" board="Taito"> + <parent>tokio</parent> + <direction>90</direction> + <description>Tokio / Scramble Formation (US)</description> + <year>1986</year> + <manufacturer>Taito America Corporation (Romstar license)</manufacturer> + </game> + <game name="tokiob" board="Taito"> + <parent>tokio</parent> + <direction>90</direction> + <description>Tokio / Scramble Formation (bootleg)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="bublbobl" board="Taito"> + <parent></parent> + <direction></direction> + <description>Bubble Bobble (Japan, Ver 0.1)</description> + <year>1986</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="bublbobl1" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble (Japan, Ver 0.0)</description> + <year>1986</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="bublboblr" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble (US, Ver 5.1)</description> + <year>1986</year> + <manufacturer>Taito America Corporation (Romstar license)</manufacturer> + </game> + <game name="bublboblr1" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble (US, Ver 1.0)</description> + <year>1986</year> + <manufacturer>Taito America Corporation (Romstar license)</manufacturer> + </game> + <game name="boblbobl" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bobble Bobble (bootleg of Bubble Bobble)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sboblbobl" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Super Bobble Bobble (bootleg, set 1)</description> + <year>1986</year> + <manufacturer>bootleg (Datsu)</manufacturer> + </game> + <game name="sboblbobla" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Super Bobble Bobble (bootleg, set 2)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sboblboblb" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Super Bobble Bobble (bootleg, set 3)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sboblbobld" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Super Bobble Bobble (bootleg, set 4)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sboblboblc" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Super Bubble Bobble (bootleg)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="bub68705" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble (bootleg with 68705)</description> + <year>1986</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="dland" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Dream Land / Super Dream Land (bootleg of Bubble Bobble)</description> + <year>1987</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="bbredux" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble ('bootleg redux' hack for Bobble Bobble PCB)</description> + <year>2013</year> + <manufacturer>bootleg (Punji)</manufacturer> + </game> + <game name="bublboblb" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble (for Bobble Bobble PCB)</description> + <year>2013</year> + <manufacturer>bootleg (Aladar)</manufacturer> + </game> + <game name="bublcave" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble: Lost Cave V1.2</description> + <year>2013</year> + <manufacturer>hack (Bisboch and Aladar)</manufacturer> + </game> + <game name="boblcave" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble: Lost Cave V1.2 (for Bobble Bobble PCB)</description> + <year>2013</year> + <manufacturer>hack (Bisboch and Aladar)</manufacturer> + </game> + <game name="bublcave11" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble: Lost Cave V1.1</description> + <year>2012</year> + <manufacturer>hack (Bisboch and Aladar)</manufacturer> + </game> + <game name="bublcave10" board="Taito"> + <parent>bublbobl</parent> + <direction></direction> + <description>Bubble Bobble: Lost Cave V1.0</description> + <year>2012</year> + <manufacturer>hack (Bisboch and Aladar)</manufacturer> + </game> + <game name="opwolf" board="Taito"> + <parent></parent> + <direction></direction> + <description>Operation Wolf (World, set 1)</description> + <year>1987</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="opwolfa" board="Taito"> + <parent>opwolf</parent> + <direction></direction> + <description>Operation Wolf (World, set 2)</description> + <year>1987</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="opwolfj" board="Taito"> + <parent>opwolf</parent> + <direction></direction> + <description>Operation Wolf (Japan)</description> + <year>1987</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="opwolfu" board="Taito"> + <parent>opwolf</parent> + <direction></direction> + <description>Operation Wolf (US)</description> + <year>1987</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="opwolfb" board="Taito"> + <parent>opwolf</parent> + <direction></direction> + <description>Operation Bear (bootleg of Operation Wolf)</description> + <year>1987</year> + <manufacturer>bootleg (Bear Corporation Korea)</manufacturer> + </game> + <game name="opwolfp" board="Taito"> + <parent>opwolf</parent> + <direction></direction> + <description>Operation Wolf (Japan, prototype)</description> + <year>1987</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <!--<game name="masterw" board="Taito B"> + <parent></parent> + <direction>270</direction> + <description>Master of Weapon (World)</description> + <year>1989</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="masterwu" board="Taito B"> + <parent>masterw</parent> + <direction>270</direction> + <description>Master of Weapon (US)</description> + <year>1989</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="masterwj" board="Taito B"> + <parent>masterw</parent> + <direction>270</direction> + <description>Master of Weapon (Japan)</description> + <year>1989</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="yukiwo" board="Taito B"> + <parent>masterw</parent> + <direction>270</direction> + <description>Yukiwo (World, prototype)</description> + <year>1989</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="nastar" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Nastar (World)</description> + <year>1988</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="nastarw" board="Taito B"> + <parent>nastar</parent> + <direction></direction> + <description>Nastar Warrior (US)</description> + <year>1988</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="rastsag2" board="Taito B"> + <parent>nastar</parent> + <direction></direction> + <description>Rastan Saga 2 (Japan)</description> + <year>1988</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="rambo3" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Rambo III (Europe)</description> + <year>1989</year> + <manufacturer>Taito Europe Corporation</manufacturer> + </game> + <game name="rambo3u" board="Taito B"> + <parent>rambo3</parent> + <direction></direction> + <description>Rambo III (US)</description> + <year>1989</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="rambo3p" board="Taito B"> + <parent>rambo3</parent> + <direction></direction> + <description>Rambo III (Europe, Proto?)</description> + <year>1989</year> + <manufacturer>Taito Europe Corporation</manufacturer> + </game> + <game name="crimec" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Crime City (World)</description> + <year>1989</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="crimecu" board="Taito B"> + <parent>crimec</parent> + <direction></direction> + <description>Crime City (US)</description> + <year>1989</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="crimecj" board="Taito B"> + <parent>crimec</parent> + <direction></direction> + <description>Crime City (Japan)</description> + <year>1989</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="tetrist" board="Taito B"> + <parent>tetris</parent> + <direction></direction> + <description>Tetris (Japan, Taito B-System, Nastar Conversion Kit)</description> + <year>1988</year> + <manufacturer>Sega</manufacturer> + </game> + <game name="tetrista" board="Taito B"> + <parent>tetris</parent> + <direction></direction> + <description>Tetris (Japan, Taito B-System, Master of Weapon Conversion Kit)</description> + <year>1988</year> + <manufacturer>Sega</manufacturer> + </game> + <game name="viofight" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Violence Fight (World)</description> + <year>1989</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="viofightu" board="Taito B"> + <parent>viofight</parent> + <direction></direction> + <description>Violence Fight (US)</description> + <year>1989</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="viofightj" board="Taito B"> + <parent>viofight</parent> + <direction></direction> + <description>Violence Fight (Japan)</description> + <year>1989</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="ashura" board="Taito B"> + <parent></parent> + <direction>270</direction> + <description>Ashura Blaster (World)</description> + <year>1990</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="ashuraj" board="Taito B"> + <parent>ashura</parent> + <direction>270</direction> + <description>Ashura Blaster (Japan)</description> + <year>1990</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="ashurau" board="Taito B"> + <parent>ashura</parent> + <direction>270</direction> + <description>Ashura Blaster (US)</description> + <year>1990</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <game name="hitice" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Hit the Ice (US)</description> + <year>1990</year> + <manufacturer>Taito Corporation (Williams license)</manufacturer> + </game> + <game name="hiticerb" board="Taito B"> + <parent>hitice</parent> + <direction></direction> + <description>Hit the Ice (US, with riser board)</description> + <year>1990</year> + <manufacturer>Taito Corporation (Williams license)</manufacturer> + </game> + <game name="hiticej" board="Taito B"> + <parent>hitice</parent> + <direction></direction> + <description>Hit the Ice (Japan)</description> + <year>1990</year> + <manufacturer>Taito Corporation (licensed from Midway)</manufacturer> + </game> + <game name="selfeena" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Sel Feena</description> + <year>1991</year> + <manufacturer>East Technology</manufacturer> + </game>--> + <game name="silentd" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Silent Dragon (World)</description> + <year>1992</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game> + <game name="silentdj" board="Taito B"> + <parent>silentd</parent> + <direction></direction> + <description>Silent Dragon (Japan)</description> + <year>1992</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="silentdu" board="Taito B"> + <parent>silentd</parent> + <direction></direction> + <description>Silent Dragon (US)</description> + <year>1992</year> + <manufacturer>Taito America Corporation</manufacturer> + </game> + <!--<game name="ryujin" board="Taito B"> + <parent></parent> + <direction>270</direction> + <description>Ryu Jin (Japan)</description> + <year>1993</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="qzshowby" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Quiz Sekai wa SHOW by shobai (Japan)</description> + <year>1993</year> + <manufacturer>Taito Corporation</manufacturer> + </game>--> + <game name="pbobble" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Puzzle Bobble (Japan, B-System)</description> + <year>1994</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <!--<game name="spacedx" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Space Invaders DX (US, v2.1)</description> + <year>1994</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="spacedxj" board="Taito B"> + <parent>spacedx</parent> + <direction></direction> + <description>Space Invaders DX (Japan, v2.1)</description> + <year>1994</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="spacedxo" board="Taito B"> + <parent>spacedx</parent> + <direction></direction> + <description>Space Invaders DX (Japan, v2.0)</description> + <year>1994</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="sbm" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Sonic Blast Man (Japan)</description> + <year>1990</year> + <manufacturer>Taito Corporation</manufacturer> + </game> + <game name="realpunc" board="Taito B"> + <parent></parent> + <direction></direction> + <description>Real Puncher</description> + <year>1994</year> + <manufacturer>Taito Corporation Japan</manufacturer> + </game>--> + <game name="gng" board="Capcom"> + <parent></parent> + <direction></direction> + <description>Ghosts'n Goblins (World? set 1)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="gnga" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (World? set 2)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="gngbl" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (bootleg with Cross)</description> + <year>1985</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="gngprot" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (prototype)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="gngblita" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (Italian bootleg, harder)</description> + <year>1985</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="gngc" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (World? set 3)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="gngt" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Ghosts'n Goblins (US)</description> + <year>1985</year> + <manufacturer>Capcom (Taito America license)</manufacturer> + </game> + <game name="makaimur" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Makai-Mura (Japan)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="makaimurc" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Makai-Mura (Japan Revision C)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="makaimurg" board="Capcom"> + <parent>gng</parent> + <direction></direction> + <description>Makai-Mura (Japan Revision G)</description> + <year>1985</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="diamond" board="Capcom"> + <parent></parent> + <direction></direction> + <description>Diamond Run</description> + <year>1989</year> + <manufacturer>KH Video</manufacturer> + </game> + <game name="sf" board="Capcom"> + <parent></parent> + <direction></direction> + <description>Street Fighter (US, set 1)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfua" board="Capcom"> + <parent>sf</parent> + <direction></direction> + <description>Street Fighter (US, set 2) (protected)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfj" board="Capcom"> + <parent>sf</parent> + <direction></direction> + <description>Street Fighter (Japan) (protected)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfjan" board="Capcom"> + <parent>sf</parent> + <direction></direction> + <description>Street Fighter (Japan, pneumatic buttons)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfan" board="Capcom"> + <parent>sf</parent> + <direction></direction> + <description>Street Fighter (World, pneumatic buttons)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfp" board="Capcom"> + <parent>sf</parent> + <direction></direction> + <description>Street Fighter (prototype)</description> + <year>1987</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottn" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Forgotten Worlds (World, newer)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottna" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (World)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottnu" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (USA, B-Board 88621B-2, Rev. C)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottnue" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (USA, B-Board 88618B-2, Rev. E)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottnuc" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (USA, B-Board 88618B-2, Rev. C)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottnua" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (USA, B-Board 88618B-2, Rev. A)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="forgottnuaa" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Forgotten Worlds (USA, B-Board 88618B-2, Rev. AA)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="lostwrld" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Lost Worlds (Japan)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="lostwrldo" board="CPS-1"> + <parent>forgottn</parent> + <direction></direction> + <description>Lost Worlds (Japan Old Ver.)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ghouls" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Ghouls'n Ghosts (World)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ghoulsu" board="CPS-1"> + <parent>ghouls</parent> + <direction></direction> + <description>Ghouls'n Ghosts (USA)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="daimakai" board="CPS-1"> + <parent>ghouls</parent> + <direction></direction> + <description>Daimakaimura (Japan)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="daimakair" board="CPS-1"> + <parent>ghouls</parent> + <direction></direction> + <description>Daimakaimura (Japan Resale Ver.)</description> + <year>1988</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="strider" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Strider (USA, B-Board 89624B-2)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="striderua" board="CPS-1"> + <parent>strider</parent> + <direction></direction> + <description>Strider (USA, B-Board 89624B-3)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="strideruc" board="CPS-1"> + <parent>strider</parent> + <direction></direction> + <description>Strider (USA, B-Board 90629B-3, buggy Street Fighter II conversion)</description> + <year>1989</year> + <manufacturer>bootleg (Capcom)</manufacturer> + </game> + <game name="striderj" board="CPS-1"> + <parent>strider</parent> + <direction></direction> + <description>Strider Hiryu (Japan)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="striderjr" board="CPS-1"> + <parent>strider</parent> + <direction></direction> + <description>Strider Hiryu (Japan Resale Ver.)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dynwar" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Dynasty Wars (USA, B-Board 89624B-?)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dynwara" board="CPS-1"> + <parent>dynwar</parent> + <direction></direction> + <description>Dynasty Wars (USA, B-Board 88622B-3)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dynwarj" board="CPS-1"> + <parent>dynwar</parent> + <direction></direction> + <description>Tenchi wo Kurau (Japan)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dynwarjr" board="CPS-1"> + <parent>dynwar</parent> + <direction></direction> + <description>Tenchi wo Kurau (Japan Resale Ver.)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="willow" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Willow (World)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="willowu" board="CPS-1"> + <parent>willow</parent> + <direction></direction> + <description>Willow (USA)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="willowuo" board="CPS-1"> + <parent>willow</parent> + <direction></direction> + <description>Willow (USA Old Ver.)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="willowj" board="CPS-1"> + <parent>willow</parent> + <direction></direction> + <description>Willow (Japan)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="unsquad" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>U.N. Squadron (US)</description> + <year>1989</year> + <manufacturer>Capcom / Daipro</manufacturer> + </game> + <game name="area88" board="CPS-1"> + <parent>unsquad</parent> + <direction></direction> + <description>Area 88 (Japan)</description> + <year>1989</year> + <manufacturer>Capcom / Daipro</manufacturer> + </game> + <game name="area88r" board="CPS-1"> + <parent>unsquad</parent> + <direction></direction> + <description>Area 88 (Japan Resale Ver.)</description> + <year>1989</year> + <manufacturer>Capcom / Daipro</manufacturer> + </game> + <game name="ffight" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Final Fight (World, set 1)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffighta" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (World, set 2)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightu" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (USA, set 1)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightu1" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (USA, set 2)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightua" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (USA 900112)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightub" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (USA 900424)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightuc" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (USA 900613)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightj" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (Japan)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightj1" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (Japan 900112)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightj2" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (Japan 900305)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightj3" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Final Fight (Japan 900613)</description> + <year>1989</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ffightjh" board="CPS-1"> + <parent>ffight</parent> + <direction></direction> + <description>Street Smart / Final Fight (Japan, hack)</description> + <year>1989</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="1941" board="CPS-1"> + <parent></parent> + <direction>270</direction> + <description>1941: Counter Attack (World 900227)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="1941r1" board="CPS-1"> + <parent>1941</parent> + <direction>270</direction> + <description>1941: Counter Attack (World)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="1941u" board="CPS-1"> + <parent>1941</parent> + <direction>270</direction> + <description>1941: Counter Attack (USA 900227)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="1941j" board="CPS-1"> + <parent>1941</parent> + <direction>270</direction> + <description>1941: Counter Attack (Japan)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mercs" board="CPS-1"> + <parent></parent> + <direction>270</direction> + <description>Mercs (World 900302)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mercsu" board="CPS-1"> + <parent>mercs</parent> + <direction>270</direction> + <description>Mercs (USA 900608)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mercsur1" board="CPS-1"> + <parent>mercs</parent> + <direction>270</direction> + <description>Mercs (USA 900302)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mercsj" board="CPS-1"> + <parent>mercs</parent> + <direction>270</direction> + <description>Senjou no Ookami II (Japan 900302)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mtwins" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Mega Twins (World 900619)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="chikij" board="CPS-1"> + <parent>mtwins</parent> + <direction></direction> + <description>Chiki Chiki Boys (Japan 900619)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="msword" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Magic Sword: Heroic Fantasy (World 900725)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mswordr1" board="CPS-1"> + <parent>msword</parent> + <direction></direction> + <description>Magic Sword: Heroic Fantasy (World 900623)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mswordu" board="CPS-1"> + <parent>msword</parent> + <direction></direction> + <description>Magic Sword: Heroic Fantasy (USA 900725)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mswordj" board="CPS-1"> + <parent>msword</parent> + <direction></direction> + <description>Magic Sword: Heroic Fantasy (Japan 900623)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cawing" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Carrier Air Wing (World 901012)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cawingr1" board="CPS-1"> + <parent>cawing</parent> + <direction></direction> + <description>Carrier Air Wing (World 901009)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cawingu" board="CPS-1"> + <parent>cawing</parent> + <direction></direction> + <description>Carrier Air Wing (USA 901012)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cawingj" board="CPS-1"> + <parent>cawing</parent> + <direction></direction> + <description>U.S. Navy (Japan 901012)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nemo" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Nemo (World 901130)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nemor1" board="CPS-1"> + <parent>nemo</parent> + <direction></direction> + <description>Nemo (World 901109)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nemoj" board="CPS-1"> + <parent>nemo</parent> + <direction></direction> + <description>Nemo (Japan 901120)</description> + <year>1990</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (World 910522)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2eb" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (World 910214)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ed" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (World 910318)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ee" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (World 910228)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ua" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910206)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ub" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910214)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2uc" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910306)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ud" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910318)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ue" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910228)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2uf" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910411)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ug" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910522, Rev. G)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ui" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 910522, Rev. I)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2uk" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (USA 911101)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2j" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 911210)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ja" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 910214)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2jc" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 910306)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2jf" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 910411)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2jh" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 910522)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2jl" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Japan 920312)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ebbl" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (TAB Austria, bootleg, set 1)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2ebbl2" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (TAB Austria, bootleg, set 3)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2ebbl3" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (TAB Austria, bootleg, set 4)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2qp1" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Quicken Pt-I, bootleg)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2thndr" board="CPS-1"> + <parent>sf2</parent> + <direction></direction> + <description>Street Fighter II: The World Warrior (Thunder Edition, bootleg)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="3wonders" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Three Wonders (World 910520)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="3wondersr1" board="CPS-1"> + <parent>3wonders</parent> + <direction></direction> + <description>Three Wonders (World 910513)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="3wondersu" board="CPS-1"> + <parent>3wonders</parent> + <direction></direction> + <description>Three Wonders (USA 910520)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wonder3" board="CPS-1"> + <parent>3wonders</parent> + <direction></direction> + <description>Wonder 3 (Japan 910520)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="3wondersb" board="CPS-1"> + <parent>3wonders</parent> + <direction></direction> + <description>Three Wonders (bootleg)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="3wondersh" board="CPS-1"> + <parent>3wonders</parent> + <direction></direction> + <description>Three Wonders (hack)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kod" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>The King of Dragons (World 910805)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="kodr1" board="CPS-1"> + <parent>kod</parent> + <direction></direction> + <description>The King of Dragons (World 910711)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="kodu" board="CPS-1"> + <parent>kod</parent> + <direction></direction> + <description>The King of Dragons (USA 910910)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="kodj" board="CPS-1"> + <parent>kod</parent> + <direction></direction> + <description>The King of Dragons (Japan 910805, B-Board 90629B-3)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="kodja" board="CPS-1"> + <parent>kod</parent> + <direction></direction> + <description>The King of Dragons (Japan 910805, B-Board 89625B-1)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcomm" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Captain Commando (World 911202)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcommr1" board="CPS-1"> + <parent>captcomm</parent> + <direction></direction> + <description>Captain Commando (World 911014)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcommu" board="CPS-1"> + <parent>captcomm</parent> + <direction></direction> + <description>Captain Commando (USA 910928)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcommj" board="CPS-1"> + <parent>captcomm</parent> + <direction></direction> + <description>Captain Commando (Japan 911202)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcommjr1" board="CPS-1"> + <parent>captcomm</parent> + <direction></direction> + <description>Captain Commando (Japan 910928)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="captcommb" board="CPS-1"> + <parent>captcomm</parent> + <direction></direction> + <description>Captain Commando (bootleg)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="knights" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Knights of the Round (World 911127)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="knightsu" board="CPS-1"> + <parent>knights</parent> + <direction></direction> + <description>Knights of the Round (USA 911127)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="knightsj" board="CPS-1"> + <parent>knights</parent> + <direction></direction> + <description>Knights of the Round (Japan 911127, B-Board 91634B-2)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="knightsja" board="CPS-1"> + <parent>knights</parent> + <direction></direction> + <description>Knights of the Round (Japan 911127, B-Board 89625B-1)</description> + <year>1991</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ce" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (World 920513)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ceea" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (World 920313)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ceua" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (USA 920313)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ceub" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (USA 920513)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ceuc" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (USA 920803)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2ceja" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Japan 920322)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2cejb" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Japan 920513)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2cejc" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Japan 920803)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2bhh" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Hung Hsi, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2rb" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Rainbow, bootleg, set 1)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2rb2" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Rainbow, bootleg, set 2)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2rb3" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Rainbow, bootleg, set 3)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2red" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Red Wave, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2v004" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (V004, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2acc" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Accelerator!, bootleg, set 1)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2acca" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Accelerator!, bootleg, set 2)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2accp2" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Accelerator Pt.II, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2amf2" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (L735 Test Rom, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2dkot2" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Double K.O. Turbo II, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2ceblp" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (protected bootleg on non-dash board)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2cebltw" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition ('Taiwan' bootleg with PAL)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m2" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M2, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m3" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M3, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m4" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M4, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m5" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M5, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m6" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M6, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m7" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M7, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m8" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M8, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2m10" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (M10, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2yyc" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (YYC, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2koryu" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Xiang Long, Chinese bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2dongb" board="CPS-1"> + <parent>sf2ce</parent> + <direction></direction> + <description>Street Fighter II': Champion Edition (Dongfang Bubai protection, bootleg)</description> + <year>1992</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="cworld2j" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Adventure Quiz Capcom World 2 (Japan 920611)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cworld2ja" board="CPS-1"> + <parent>cworld2j</parent> + <direction></direction> + <description>Adventure Quiz Capcom World 2 (Japan 920611, B-Board 90629B-3, no battery)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cworld2jb" board="CPS-1"> + <parent>cworld2j</parent> + <direction></direction> + <description>Adventure Quiz Capcom World 2 (Japan 920611, B-Board 91634B-2)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="varth" board="CPS-1"> + <parent></parent> + <direction>270</direction> + <description>Varth: Operation Thunderstorm (World 920714)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="varthr1" board="CPS-1"> + <parent>varth</parent> + <direction>270</direction> + <description>Varth: Operation Thunderstorm (World 920612)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="varthu" board="CPS-1"> + <parent>varth</parent> + <direction>270</direction> + <description>Varth: Operation Thunderstorm (USA 920612)</description> + <year>1992</year> + <manufacturer>Capcom (Romstar license)</manufacturer> + </game> + <game name="varthj" board="CPS-1"> + <parent>varth</parent> + <direction>270</direction> + <description>Varth: Operation Thunderstorm (Japan 920714)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="varthjr" board="CPS-1"> + <parent>varth</parent> + <direction>270</direction> + <description>Varth: Operation Thunderstorm (Japan Resale Ver. 920714)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="qad" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Quiz & Dragons: Capcom Quiz Game (USA 920701)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="qadjr" board="CPS-1"> + <parent>qad</parent> + <direction></direction> + <description>Quiz & Dragons: Capcom Quiz Game (Japan Resale Ver. 940921)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wof" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>Warriors of Fate (World 921031)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wofr1" board="CPS-1(QSound)"> + <parent>wof</parent> + <direction></direction> + <description>Warriors of Fate (World 921002)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wofu" board="CPS-1(QSound)"> + <parent>wof</parent> + <direction></direction> + <description>Warriors of Fate (USA 921031)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wofa" board="CPS-1(QSound)"> + <parent>wof</parent> + <direction></direction> + <description>Sangokushi II (Asia 921005)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wofj" board="CPS-1(QSound)"> + <parent>wof</parent> + <direction></direction> + <description>Tenchi wo Kurau II: Sekiheki no Tatakai (Japan 921031)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="wofhfh" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Huo Feng Huang (Chinese bootleg of Sangokushi II)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sf2hf" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Street Fighter II': Hyper Fighting (World 921209)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2hfu" board="CPS-1"> + <parent>sf2hf</parent> + <direction></direction> + <description>Street Fighter II': Hyper Fighting (USA 921209)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sf2hfj" board="CPS-1"> + <parent>sf2hf</parent> + <direction></direction> + <description>Street Fighter II' Turbo: Hyper Fighting (Japan 921209)</description> + <year>1992</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dino" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>Cadillacs and Dinosaurs (World 930201)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dinou" board="CPS-1(QSound)"> + <parent>dino</parent> + <direction></direction> + <description>Cadillacs and Dinosaurs (USA 930201)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dinoj" board="CPS-1(QSound)"> + <parent>dino</parent> + <direction></direction> + <description>Cadillacs: Kyouryuu Shin Seiki (Japan 930201)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dinohunt" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Dinosaur Hunter (Chinese bootleg of Cadillacs and Dinosaurs)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="punisher" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>The Punisher (World 930422)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="punisheru" board="CPS-1(QSound)"> + <parent>punisher</parent> + <direction></direction> + <description>The Punisher (USA 930422)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="punisherh" board="CPS-1(QSound)"> + <parent>punisher</parent> + <direction></direction> + <description>The Punisher (Hispanic 930422)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="punisherj" board="CPS-1(QSound)"> + <parent>punisher</parent> + <direction></direction> + <description>The Punisher (Japan 930422)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="punisherbz" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Biaofeng Zhanjing (Chinese bootleg of The Punisher)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="slammast" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>Saturday Night Slam Masters (World 930713)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="slammastu" board="CPS-1(QSound)"> + <parent>slammast</parent> + <direction></direction> + <description>Saturday Night Slam Masters (USA 930713)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mbomberj" board="CPS-1(QSound)"> + <parent>slammast</parent> + <direction></direction> + <description>Muscle Bomber: The Body Explosion (Japan 930713)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mbombrd" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>Muscle Bomber Duo: Ultimate Team Battle (World 931206)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mbombrdj" board="CPS-1(QSound)"> + <parent>mbombrd</parent> + <direction></direction> + <description>Muscle Bomber Duo: Heat Up Warriors (Japan 931206)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="pnickj" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Pnickies (Japan 940608)</description> + <year>1994</year> + <manufacturer>Compile (Capcom license)</manufacturer> + </game> + <game name="qtono2j" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Quiz Tonosama no Yabou 2: Zenkoku-ban (Japan 950123)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="megaman" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Mega Man: The Power Battle (CPS1, USA 951006)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="megamana" board="CPS-1"> + <parent>megaman</parent> + <direction></direction> + <description>Mega Man: The Power Battle (CPS1, Asia 951006)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="rockmanj" board="CPS-1"> + <parent>megaman</parent> + <direction></direction> + <description>Rockman: The Power Battle (CPS1, Japan 950922)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <!-- <game name="ganbare" board="CPS-1"> + <parent></parent> + <direction></direction> + <dessciption>Ganbare! Marine Kun (Japan 2K0411)</dessciption> + <year>2000</year> + <manufacturer>Capcom</manufacturer> + </game>--> + <game name="pokonyan" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Pokonyan! Balloon (Japan 940322)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="pang3" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Pang! 3 (Euro 950601)</description> + <year>1995</year> + <manufacturer>Mitchell</manufacturer> + </game> + <game name="pang3r1" board="CPS-1"> + <parent>pang3</parent> + <direction></direction> + <description>Pang! 3 (Euro 950511)</description> + <year>1995</year> + <manufacturer>Mitchell</manufacturer> + </game> + <game name="pang3j" board="CPS-1"> + <parent>pang3</parent> + <direction></direction> + <description>Pang! 3: Kaitou Tachi no Karei na Gogo (Japan 950511)</description> + <year>1995</year> + <manufacturer>Mitchell</manufacturer> + </game> + <game name="pang3b" board="CPS-1"> + <parent>pang3</parent> + <direction></direction> + <description>Pang! 3 (bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="wofch" board="CPS-1(QSound)"> + <parent></parent> + <direction></direction> + <description>Tenchi wo Kurau II: Sekiheki no Tatakai (CPS Changer, Japan 921031)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzch" board="CPS-1"> + <parent></parent> + <direction></direction> + <description>Street Fighter Zero (CPS Changer, Japan 951020)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfach" board="CPS-1"> + <parent>sfzch</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (CPS Changer, Publicity USA 950727)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzbch" board="CPS-1"> + <parent>sfzch</parent> + <direction></direction> + <description>Street Fighter Zero (CPS Changer, Brazil 950727)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (World 931005)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2r1" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (World 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2u" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (USA 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2a" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Asia 931005)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2ar1" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Asia 930914)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2j" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Japan 931005)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2jr1" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Japan 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2jr2" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Japan 930910)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2h" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (Hispanic 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tb" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (World 931119)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tbr1" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (World 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tbj" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (Japan 931005)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tbj1" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (Japan 930911)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tbh" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (Hispanic 931005)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ecofghtr" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Eco Fighters (World 931203)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ecofghtru" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Eco Fighters (USA 940215)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ecofghtru1" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Eco Fighters (USA 931203)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="uecology" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Ultimate Ecology (Japan 931203)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ecofghtra" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Eco Fighters (Asia 931203)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ecofghtrh" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Eco Fighters (Hispanic 931203)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtod" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Euro 940412)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodr1" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Euro 940113)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodu" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (USA 940125)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodur1" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (USA 940113)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodj" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Japan 940412)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodjr1" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Japan 940125)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodjr2" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Japan 940113)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtoda" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Asia 940412)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodar1" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Asia 940113)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodh" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Hispanic 940412)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodhr1" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Hispanic 940125)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddtodhr2" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Hispanic 940113)</description> + <year>1993</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2t" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Super Street Fighter II Turbo (World 940223)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2ta" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II Turbo (Asia 940223)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2th" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II Turbo (Hispanic 940223)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tu" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II Turbo (USA 940323)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2tur1" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II Turbo (USA 940223)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2xj" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II X: Grand Master Challenge (Japan 940311)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2xjr1" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II X: Grand Master Challenge (Japan 940223)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ssf2xjr1r" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II X: Grand Master Challenge (Japan 940223 rent version)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="avsp" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Alien vs. Predator (Euro 940520)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="avspu" board="CPS2"> + <parent>avsp</parent> + <direction></direction> + <description>Alien vs. Predator (USA 940520)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="avspj" board="CPS2"> + <parent>avsp</parent> + <direction></direction> + <description>Alien vs. Predator (Japan 940520)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="avspa" board="CPS2"> + <parent>avsp</parent> + <direction></direction> + <description>Alien vs. Predator (Asia 940520)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="avsph" board="CPS2"> + <parent>avsp</parent> + <direction></direction> + <description>Alien vs. Predator (Hispanic 940520)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dstlk" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (Euro 940705)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dstlku" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (USA 940818)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dstlkur1" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (USA 940705)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dstlka" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (Asia 940705)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="dstlkh" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (Hispanic 940818)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vampj" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Vampire: The Night Warriors (Japan 940705)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vampja" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Vampire: The Night Warriors (Japan 940705 alt)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vampjr1" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Vampire: The Night Warriors (Japan 940630)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ringdest" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Ring of Destruction: Slammasters II (Euro 940902)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ringdesta" board="CPS2"> + <parent>ringdest</parent> + <direction></direction> + <description>Ring of Destruction: Slammasters II (Asia 940831)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ringdesth" board="CPS2"> + <parent>ringdest</parent> + <direction></direction> + <description>Ring of Destruction: Slammasters II (Hispanic 940902)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="smbomb" board="CPS2"> + <parent>ringdest</parent> + <direction></direction> + <description>Super Muscle Bomber: The International Blowout (Japan 940831)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="smbombr1" board="CPS2"> + <parent>ringdest</parent> + <direction></direction> + <description>Super Muscle Bomber: The International Blowout (Japan 940808)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwar" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Armored Warriors (Euro 941024)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwarr1" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (Euro 941011)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwaru" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (USA 941024)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwaru1" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (USA 940920)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="pgear" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Powered Gear: Strategic Variant Armor Equipment (Japan 941024)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="pgearr1" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Powered Gear: Strategic Variant Armor Equipment (Japan 940916)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwara" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (Asia 941024)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="armwarar1" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (Asia 940920)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcota" board="CPS2"> + <parent></parent> + <direction></direction> + <description>X-Men: Children of the Atom (Euro 950331)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotar1" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Euro 950105)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotau" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (USA 950105)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotah" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Hispanic 950331)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotahr1" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Hispanic 950105)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaj" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Japan 950105)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaj1" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Japan 941222)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaj2" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Japan 941219)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaj3" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Japan 941217)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotajr" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Japan 941208 rent version)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaa" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Asia 950105)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmcotaar1" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Asia 941217)</description> + <year>1994</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nwarr" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (Euro 950316)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nwarru" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (USA 950406)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nwarrh" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (Hispanic 950403)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nwarrb" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (Brazil 950403)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="nwarra" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (Asia 950302)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhuntj" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Vampire Hunter: Darkstalkers' Revenge (Japan 950316)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhuntjr1s" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Vampire Hunter: Darkstalkers' Revenge (Japan 950307 stop version)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhuntjr1" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Vampire Hunter: Darkstalkers' Revenge (Japan 950307)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhuntjr2" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Vampire Hunter: Darkstalkers' Revenge (Japan 950302)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cybots" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Cyberbots: Fullmetal Madness (Euro 950424)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cybotsu" board="CPS2"> + <parent>cybots</parent> + <direction></direction> + <description>Cyberbots: Fullmetal Madness (USA 950424)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cybotsj" board="CPS2"> + <parent>cybots</parent> + <direction></direction> + <description>Cyberbots: Fullmetal Madness (Japan 950420)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (Euro 950727)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfar1" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (Euro 950718)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfar2" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (Euro 950627)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfar3" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (Euro 950605)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfau" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (USA 950627)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfza" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Asia 950627)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzar1" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Asia 950605)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzj" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Japan 950727)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzjr1" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Japan 950627)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzjr2" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Japan 950605)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzh" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Hispanic 950718)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzhr1" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Hispanic 950627)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzb" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Brazil 951109)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfzbr1" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Zero (Brazil 950727)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mmancp2u" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Mega Man: The Power Battle (CPS2, USA 951006, SAMPLE Version)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mmancp2ur1" board="CPS2"> + <parent>mmancp2u</parent> + <direction></direction> + <description>Mega Man: The Power Battle (CPS2, USA 950926, SAMPLE Version)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="rmancp2j" board="CPS2"> + <parent>mmancp2u</parent> + <direction></direction> + <description>Rockman: The Power Battle (CPS2, Japan 950922)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="msh" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Marvel Super Heroes (Euro 951024)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshu" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (USA 951024)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshj" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (Japan 951117)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshjr1" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (Japan 951024)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="msha" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (Asia 951024)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshh" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (Hispanic 951117)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshb" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (Brazil 951117)</description> + <year>1995</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xx" board="CPS2"> + <parent></parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (USA 951207)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxa" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Asia 960104)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxar1" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Asia 951207)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxj" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Japan 960104, yellow case)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxjr1" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Japan 951225)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxjr2" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Japan 951207)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxh" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Hispanic 951218)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="19xxb" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (Brazil 951218)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsom" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Euro 960619)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomr1" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Euro 960223)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomr2" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Euro 960209)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomr3" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Euro 960208)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomu" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (USA 960619)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomur1" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (USA 960209)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomj" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Japan 960619)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomjr1" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Japan 960206)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsoma" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Asia 960619)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomar1" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Asia 960208)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomh" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Hispanic 960223)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="ddsomb" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (Brazil 960223)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Street Fighter Alpha 2 (Euro 960229)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa2u" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Alpha 2 (USA 960430)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa2ur1" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Alpha 2 (USA 960306)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2j" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Japan 960430)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2jr1" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Japan 960227)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2a" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Asia 960227)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2b" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Brazil 960531)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2br1" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Brazil 960304)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2h" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Hispanic 960304)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2n" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Oceania 960229)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2al" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Street Fighter Zero 2 Alpha (Asia 960826)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2alj" board="CPS2"> + <parent>sfz2al</parent> + <direction></direction> + <description>Street Fighter Zero 2 Alpha (Japan 960805)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2alh" board="CPS2"> + <parent>sfz2al</parent> + <direction></direction> + <description>Street Fighter Zero 2 Alpha (Hispanic 960813)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz2alb" board="CPS2"> + <parent>sfz2al</parent> + <direction></direction> + <description>Street Fighter Zero 2 Alpha (Brazil 960813)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="spf2t" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Super Puzzle Fighter II Turbo (Euro 960529)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="spf2tu" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II Turbo (USA 960620)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="spf2xj" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II X (Japan 960531)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="spf2ta" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II Turbo (Asia 960529)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="spf2th" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II Turbo (Hispanic 960531)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="megaman2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Mega Man 2: The Power Fighters (USA 960708)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="megaman2a" board="CPS2"> + <parent>megaman2</parent> + <direction></direction> + <description>Mega Man 2: The Power Fighters (Asia 960708)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="rockman2j" board="CPS2"> + <parent>megaman2</parent> + <direction></direction> + <description>Rockman 2: The Power Fighters (Japan 960708)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="megaman2h" board="CPS2"> + <parent>megaman2</parent> + <direction></direction> + <description>Mega Man 2: The Power Fighters (Hispanic 960712)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="qndream" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Quiz Nanairo Dreams: Nijiirochou no Kiseki (Japan 960826)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsf" board="CPS2"> + <parent></parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Euro 961004)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfr1" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Euro 960910)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfu" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (USA 961023)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfur1" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (USA 961004)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfur2" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (USA 960910)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfj" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Japan 961023)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfjr1" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Japan 961004)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfjr2" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Japan 960910)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfjr3" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Japan 960909)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfa" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Asia 961023)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfar1" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Asia 961004)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfar2" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Asia 960919)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfar3" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Asia 960910)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfh" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Hispanic 961004)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="xmvsfb" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (Brazil 961023)</description> + <year>1996</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="batcir" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Battle Circuit (Euro 970319)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="batcira" board="CPS2"> + <parent>batcir</parent> + <direction></direction> + <description>Battle Circuit (Asia 970319)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="batcirj" board="CPS2"> + <parent>batcir</parent> + <direction></direction> + <description>Battle Circuit (Japan 970319)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsav" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (Euro 970519)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsavu" board="CPS2"> + <parent>vsav</parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (USA 970519)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsavj" board="CPS2"> + <parent>vsav</parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (Japan 970519)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsava" board="CPS2"> + <parent>vsav</parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (Asia 970519)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsavh" board="CPS2"> + <parent>vsav</parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (Hispanic 970519)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsf" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Euro 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfu" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (USA 970827)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfu1" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (USA 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfj" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Japan 970707)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfj1" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Japan 970702)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfj2" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Japan 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfh" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Hispanic 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfa" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Asia 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfa1" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Asia 970620)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfb" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Brazil 970827)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mshvsfb1" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (Brazil 970625)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="csclub" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Capcom Sports Club (Euro 971017)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="csclub1" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Euro 970722)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="cscluba" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Asia 970722)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="csclubj" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Japan 970722)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="csclubjy" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Japan 970722, yellow case)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="csclubh" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Hispanic 970722)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sgemf" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Super Gem Fighter Mini Mix (USA 970904)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="pfghtj" board="CPS2"> + <parent>sgemf</parent> + <direction></direction> + <description>Pocket Fighter (Japan 970904)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sgemfa" board="CPS2"> + <parent>sgemf</parent> + <direction></direction> + <description>Super Gem Fighter: Mini Mix (Asia 970904)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sgemfh" board="CPS2"> + <parent>sgemf</parent> + <direction></direction> + <description>Super Gem Fighter: Mini Mix (Hispanic 970904)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhunt2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Vampire Hunter 2: Darkstalkers Revenge (Japan 970929)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vhunt2r1" board="CPS2"> + <parent>vhunt2</parent> + <direction></direction> + <description>Vampire Hunter 2: Darkstalkers Revenge (Japan 970913)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="vsav2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Vampire Savior 2: The Lord of Vampire (Japan 970913)</description> + <year>1997</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvsc" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Euro 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscr1" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Euro 980112)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscu" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (USA 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscur1" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (USA 971222)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscj" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscjr1" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Japan 980112)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscjsing" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Japan 980123) (Single PCB)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvsca" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Asia 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscar1" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Asia 980112)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvsch" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Hispanic 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="mvscb" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (Brazil 980123)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Street Fighter Alpha 3 (Euro 980904)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3u" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (USA 980904)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3ur1" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (USA 980629)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3us" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (USA 980616, SAMPLE Version)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3h" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (Hispanic 980904)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3hr1" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (Hispanic 980629)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfa3b" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (Brazil 980629)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz3j" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Japan 980904)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz3jr1" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Japan 980727)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz3jr2" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Japan 980629)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz3a" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Asia 980904)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="sfz3ar1" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Asia 980701)</description> + <year>1998</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="jyangoku" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Jyangokushi: Haoh no Saihai (Japan 990527)</description> + <year>1999</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="hsf2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Hyper Street Fighter II: The Anniversary Edition (USA 040202)</description> + <year>2004</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="hsf2a" board="CPS2"> + <parent>hsf2</parent> + <direction></direction> + <description>Hyper Street Fighter II: The Anniversary Edition (Asia 040202)</description> + <year>2004</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="hsf2j" board="CPS2"> + <parent>hsf2</parent> + <direction></direction> + <description>Hyper Street Fighter II: The Anniversary Edition (Japan 040202)</description> + <year>2004</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="hsf2j1" board="CPS2"> + <parent>hsf2</parent> + <direction></direction> + <description>Hyper Street Fighter II: The Anniversary Edition (Japan 031222)</description> + <year>2004</year> + <manufacturer>Capcom</manufacturer> + </game> + <game name="gigawing" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Giga Wing (USA 990222)</description> + <year>1999</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="gigawingj" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (Japan 990223)</description> + <year>1999</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="gigawinga" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (Asia 990222)</description> + <year>1999</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="gigawingh" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (Hispanic 990222)</description> + <year>1999</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="gigawingb" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (Brazil 990222)</description> + <year>1999</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="mmatrix" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Mars Matrix: Hyper Solid Shooting (USA 000412)</description> + <year>2000</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="mmatrixj" board="CPS2"> + <parent>mmatrix</parent> + <direction></direction> + <description>Mars Matrix: Hyper Solid Shooting (Japan 000412)</description> + <year>2000</year> + <manufacturer>Takumi (Capcom license)</manufacturer> + </game> + <game name="mpang" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Mighty! Pang (Euro 001010)</description> + <year>2000</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="mpangr1" board="CPS2"> + <parent>mpang</parent> + <direction></direction> + <description>Mighty! Pang (Euro 000925)</description> + <year>2000</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="mpangu" board="CPS2"> + <parent>mpang</parent> + <direction></direction> + <description>Mighty! Pang (USA 001010)</description> + <year>2000</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="mpangj" board="CPS2"> + <parent>mpang</parent> + <direction></direction> + <description>Mighty! Pang (Japan 001011)</description> + <year>2000</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="pzloop2" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Puzz Loop 2 (Euro 010302)</description> + <year>2001</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="pzloop2j" board="CPS2"> + <parent>pzloop2</parent> + <direction></direction> + <description>Puzz Loop 2 (Japan 010226)</description> + <year>2001</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="pzloop2jr1" board="CPS2"> + <parent>pzloop2</parent> + <direction></direction> + <description>Puzz Loop 2 (Japan 010205)</description> + <year>2001</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="choko" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Janpai Puzzle Choukou (Japan 010820)</description> + <year>2001</year> + <manufacturer>Mitchell (Capcom license)</manufacturer> + </game> + <game name="dimahoo" board="CPS2"> + <parent></parent> + <direction>270</direction> + <description>Dimahoo (Euro 000121)</description> + <year>2000</year> + <manufacturer>Eighting / Raizing (Capcom license)</manufacturer> + </game> + <game name="dimahoou" board="CPS2"> + <parent>dimahoo</parent> + <direction>270</direction> + <description>Dimahoo (USA 000121)</description> + <year>2000</year> + <manufacturer>Eighting / Raizing (Capcom license)</manufacturer> + </game> + <game name="gmahou" board="CPS2"> + <parent>dimahoo</parent> + <direction>270</direction> + <description>Great Mahou Daisakusen (Japan 000121)</description> + <year>2000</year> + <manufacturer>Eighting / Raizing (Capcom license)</manufacturer> + </game> + <game name="1944" board="CPS2"> + <parent></parent> + <direction></direction> + <description>1944: The Loop Master (USA 000620)</description> + <year>2000</year> + <manufacturer>Eighting / Raizing (Capcom license)</manufacturer> + </game> + <game name="1944j" board="CPS2"> + <parent>1944</parent> + <direction></direction> + <description>1944: The Loop Master (Japan 000620)</description> + <year>2000</year> + <manufacturer>Eighting / Raizing (Capcom license)</manufacturer> + </game> + <game name="progear" board="CPS2"> + <parent></parent> + <direction></direction> + <description>Progear (USA 010117)</description> + <year>2001</year> + <manufacturer>Cave (Capcom license)</manufacturer> + </game> + <game name="progearj" board="CPS2"> + <parent>progear</parent> + <direction></direction> + <description>Progear no Arashi (Japan 010117)</description> + <year>2001</year> + <manufacturer>Cave (Capcom license)</manufacturer> + </game> + <game name="progeara" board="CPS2"> + <parent>progear</parent> + <direction></direction> + <description>Progear (Asia 010117)</description> + <year>2001</year> + <manufacturer>Cave (Capcom license)</manufacturer> + </game> + <game name="ddtodd" board="CPS2"> + <parent>ddtod</parent> + <direction></direction> + <description>Dungeons & Dragons: Tower of Doom (Euro 940412 Phoenix Edition) (bootleg)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ecofghtrd" board="CPS2"> + <parent>ecofghtr</parent> + <direction></direction> + <description>Eco Fighters (World 931203 Phoenix Edition) (bootleg)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ssf2ud" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The New Challengers (USA 930911 Phoenix Edition) (bootleg)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ssf2tbd" board="CPS2"> + <parent>ssf2</parent> + <direction></direction> + <description>Super Street Fighter II: The Tournament Battle (World 931119 Phoenix Edition) (bootleg)</description> + <year>1993</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="armwar1d" board="CPS2"> + <parent>armwar</parent> + <direction></direction> + <description>Armored Warriors (Euro 941011 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="avspd" board="CPS2"> + <parent>avsp</parent> + <direction></direction> + <description>Alien vs. Predator (Euro 940520 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="dstlku1d" board="CPS2"> + <parent>dstlk</parent> + <direction></direction> + <description>Darkstalkers: The Night Warriors (USA 940705 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ringdstd" board="CPS2"> + <parent>ringdest</parent> + <direction></direction> + <description>Ring of Destruction: Slammasters II (Euro 940902 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ssf2tad" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II Turbo (Asia 940223 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ssf2xjr1d" board="CPS2"> + <parent>ssf2t</parent> + <direction></direction> + <description>Super Street Fighter II X: Grand Master Challenge (Japan 940223 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="xmcotar1d" board="CPS2"> + <parent>xmcota</parent> + <direction></direction> + <description>X-Men: Children of the Atom (Euro 950105 Phoenix Edition) (bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mshud" board="CPS2"> + <parent>msh</parent> + <direction></direction> + <description>Marvel Super Heroes (US 951024 Phoenix Edition) (bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="cybotsud" board="CPS2"> + <parent>cybots</parent> + <direction></direction> + <description>Cyberbots: Fullmetal Madness (USA 950424 Phoenix Edition) (bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="cybotsjd" board="CPS2"> + <parent>cybots</parent> + <direction></direction> + <description>Cyberbots: Fullmetal Madness (Japan 950424) (decrypted bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="nwarrud" board="CPS2"> + <parent>nwarr</parent> + <direction></direction> + <description>Night Warriors: Darkstalkers' Revenge (USA 950406 Phoenix Edition) (bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfad" board="CPS2"> + <parent>sfa</parent> + <direction></direction> + <description>Street Fighter Alpha: Warriors' Dreams (Euro 950727 Phoenix Edition) (bootleg)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="19xxd" board="CPS2"> + <parent>19xx</parent> + <direction>270</direction> + <description>19XX: The War Against Destiny (USA 951207 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ddsomud" board="CPS2"> + <parent>ddsom</parent> + <direction></direction> + <description>Dungeons & Dragons: Shadow over Mystara (USA 960619 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <!-- <game name="gigaman2" board="CPS2"> + <parent>megaman2</parent> + <direction></direction> + <description>Giga Man 2: The Power Fighters (bootleg of Mega Man 2: The Power Fighters)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game>--> + <game name="megamn2d" board="CPS2"> + <parent>megaman2</parent> + <direction></direction> + <description>Mega Man 2: The Power Fighters (USA 960708 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfz2ad" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Asia 960227 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfz2jd" board="CPS2"> + <parent>sfa2</parent> + <direction></direction> + <description>Street Fighter Zero 2 (Japan 960227 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="spf2td" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II Turbo (USA 960620 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="spf2xjd" board="CPS2"> + <parent>spf2t</parent> + <direction></direction> + <description>Super Puzzle Fighter II X (Japan 960531 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfz2ald" board="CPS2"> + <parent>sfz2al</parent> + <direction></direction> + <description>Street Fighter Zero 2 Alpha (Asia 960826 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="xmvsfu1d" board="CPS2"> + <parent>xmvsf</parent> + <direction></direction> + <description>X-Men Vs. Street Fighter (USA 961004 Phoenix Edition) (bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="batcird" board="CPS2"> + <parent>batcir</parent> + <direction></direction> + <description>Battle Circuit (Euro 970319 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="csclub1d" board="CPS2"> + <parent>csclub</parent> + <direction></direction> + <description>Capcom Sports Club (Euro 970722 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mshvsfu1d" board="CPS2"> + <parent>mshvsf</parent> + <direction></direction> + <description>Marvel Super Heroes Vs. Street Fighter (USA 970625 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sgemfd" board="CPS2"> + <parent>sgemf</parent> + <direction></direction> + <description>Super Gem Fighter Mini Mix (USA 970904 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="vsavd" board="CPS2"> + <parent>vsav</parent> + <direction></direction> + <description>Vampire Savior: The Lord of Vampire (Euro 970519 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="vhunt2d" board="CPS2"> + <parent>vhunt2</parent> + <direction></direction> + <description>Vampire Hunter 2: Darkstalkers Revenge (Japan 970913 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="vsav2d" board="CPS2"> + <parent>vsav2</parent> + <direction></direction> + <description>Vampire Savior 2: The Lord of Vampire (Japan 970913 Phoenix Edition) (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mvscud" board="CPS2"> + <parent>mvsc</parent> + <direction></direction> + <description>Marvel Vs. Capcom: Clash of Super Heroes (USA 980123 Phoenix Edition) (bootleg)</description> + <year>1998</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfa3ud" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Alpha 3 (USA 980904 Phoenix Edition) (bootleg)</description> + <year>1998</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="sfz3jr2d" board="CPS2"> + <parent>sfa3</parent> + <direction></direction> + <description>Street Fighter Zero 3 (Japan 980629 Phoenix Edition) (bootleg)</description> + <year>1998</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="gigawingd" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (USA 990222 Phoenix Edition) (bootleg)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="gigawingjd" board="CPS2"> + <parent>gigawing</parent> + <direction></direction> + <description>Giga Wing (Japan 990223 Phoenix Edition) (bootleg)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="1944d" board="CPS2"> + <parent>1944</parent> + <direction></direction> + <description>1944: The Loop Master (USA 000620 Phoenix Edition) (bootleg)</description> + <year>2000</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="dimahoud" board="CPS2"> + <parent>dimahoo</parent> + <direction>270</direction> + <description>Dimahoo (USA 000121 Phoenix Edition) (bootleg)</description> + <year>2000</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mmatrixd" board="CPS2"> + <parent>mmatrix</parent> + <direction></direction> + <description>Mars Matrix: Hyper Solid Shooting (USA 000412 Phoenix Edition) (bootleg)</description> + <year>2000</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="progearud" board="CPS2"> + <parent>progear</parent> + <direction></direction> + <description>Progear (USA 010117 Phoenix Edition) (bootleg)</description> + <year>2001</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="progearjd" board="CPS2"> + <parent>progear</parent> + <direction></direction> + <description>Progear no Arashi (Japan 010117 Phoenix Edition) (bootleg)</description> + <year>2001</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="progearjbl" board="CPS2"> + <parent>progear</parent> + <direction></direction> + <description>Progear no Arashi (Japan 010117) (decrypted bootleg)</description> + <year>2001</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="hsf2d" board="CPS2"> + <parent>hsf2</parent> + <direction></direction> + <description>Hyper Street Fighter II: The Anniversary Edition (Asia 040202 Phoenix Edition) (bootleg)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="pcktgal" board="Data East"> + <parent></parent> + <direction></direction> + <description>Pocket Gal (Japan)</description> + <year>1987</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="pcktgalb" board="Data East"> + <parent>pcktgal</parent> + <direction></direction> + <description>Pocket Gal (bootleg)</description> + <year>1987</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="pcktgal2" board="Data East"> + <parent>pcktgal</parent> + <direction></direction> + <description>Pocket Gal 2 (English)</description> + <year>1989</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="pcktgal2j" board="Data East"> + <parent>pcktgal</parent> + <direction></direction> + <description>Pocket Gal 2 (Japanese)</description> + <year>1989</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="spool3" board="Data East"> + <parent>pcktgal</parent> + <direction></direction> + <description>Super Pool III (English)</description> + <year>1989</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="spool3i" board="Data East"> + <parent>pcktgal</parent> + <direction></direction> + <description>Super Pool III (I-Vics)</description> + <year>1990</year> + <manufacturer>Data East Corporation (I-Vics license)</manufacturer> + </game> + <game name="pbaction" board="Tehkan"> + <parent></parent> + <direction>90</direction> + <description>Pinball Action (set 1)</description> + <year>1989</year> + <manufacturer>Tehkan</manufacturer> + </game> + <game name="pbaction2" board="Tehkan"> + <parent>pbaction</parent> + <direction>90</direction> + <description>Pinball Action (set 2)</description> + <year>1989</year> + <manufacturer>Tehkan</manufacturer> + </game> + <game name="pbaction3" board="Tehkan"> + <parent>pbaction</parent> + <direction>90</direction> + <description>Pinball Action (set 3, encrypted)</description> + <year>1989</year> + <manufacturer>Tehkan</manufacturer> + </game> + <game name="pbaction4" board="Tehkan"> + <parent>pbaction</parent> + <direction>90</direction> + <description>Pinball Action (set 4, encrypted)</description> + <year>1989</year> + <manufacturer>Tehkan</manufacturer> + </game> + <game name="pbaction5" board="Tehkan"> + <parent>pbaction</parent> + <direction>90</direction> + <description>Pinball Action (set 5, encrypted)</description> + <year>1989</year> + <manufacturer>Tehkan</manufacturer> + </game> + <game name="cuebrick" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Cue Brick (World, version D)</description> + <year>1985</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="mia" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>M.I.A. - Missing in Action (version T)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="mia2" board="Konami 68000"> + <parent>mia</parent> + <direction></direction> + <description>M.I.A. - Missing in Action (version S)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (World 4 Players, version X)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmntu" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (US 4 Players, version R)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmntua" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (US 4 Players, version J)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmntub" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (US 4 Players, version H)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmht" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles (UK 4 Players, version F)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmhta" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles (UK 4 Players, version S)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmhtb" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles (UK 4 Players, version ?)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmntj" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (Japan 4 Players, version 2)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnta" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (Asia 4 Players, version ?)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmht2p" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles (UK 2 Players, version U)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmht2pa" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles (UK 2 Players, version ?)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt2pj" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (Japan 2 Players, version 1)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt2po" board="Konami 68000"> + <parent>tmnt</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles (Oceania 2 Players, version ?)</description> + <year>1989</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="punkshot" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Punk Shot (US 4 Players)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="punkshot2" board="Konami 68000"> + <parent>punkshot</parent> + <direction></direction> + <description>Punk Shot (US 2 Players)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="punkshotj" board="Konami 68000"> + <parent>punkshot</parent> + <direction></direction> + <description>Punk Shot (Japan 2 Players)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="lgtnfght" board="Konami 68000"> + <parent></parent> + <direction>90</direction> + <description>Lightning Fighters (World)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="lgtnfghta" board="Konami 68000"> + <parent>lgtnfght</parent> + <direction>90</direction> + <description>Lightning Fighters (Asia)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="lgtnfghtu" board="Konami 68000"> + <parent>lgtnfght</parent> + <direction>90</direction> + <description>Lightning Fighters (US)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="trigon" board="Konami 68000"> + <parent>lgtnfght</parent> + <direction>90</direction> + <description>Trigon (Japan)</description> + <year>1990</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="blswhstl" board="Konami 68000"> + <parent></parent> + <direction>90</direction> + <description>Bells & Whistles (World, version L)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="blswhstla" board="Konami 68000"> + <parent>blswhstl</parent> + <direction>90</direction> + <description>Bells & Whistles (Asia, version M)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="detatwin" board="Konami 68000"> + <parent>blswhstl</parent> + <direction>90</direction> + <description>Detana!! Twin Bee (Japan, version J)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="glfgreat" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Golfing Greats</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="glfgreatj" board="Konami 68000"> + <parent>glfgreat</parent> + <direction></direction> + <description>Golfing Greats (Japan)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt2" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver UAA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt2a" board="Konami 68000"> + <parent>tmnt2</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles - Turtles in Time (4 Players ver ADA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmht22pe" board="Konami 68000"> + <parent>tmnt2</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles - Turtles in Time (2 Players ver EBA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmht24pe" board="Konami 68000"> + <parent>tmnt2</parent> + <direction></direction> + <description>Teenage Mutant Hero Turtles - Turtles in Time (4 Players ver EAA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="tmnt22pu" board="Konami 68000"> + <parent>tmnt2</parent> + <direction></direction> + <description>Teenage Mutant Ninja Turtles - Turtles in Time (2 Players ver UDA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="qgakumon" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Quiz Gakumon no Susume (Japan ver. JA2 Type L)</description> + <year>1993</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssriders" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Sunset Riders (4 Players ver EAC)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssriderseaa" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver EAA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersebd" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (2 Players ver EBD)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersebc" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (2 Players ver EBC)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersuda" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver UDA)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersuac" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver UAC)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersuab" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver UAB)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersubc" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (2 Players ver UBC)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersadd" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver ADD)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersabd" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (2 Players ver ABD)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersjad" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver JAD)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersjac" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (4 Players ver JAC)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="ssridersjbd" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (2 Players ver JBD)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <!--<game name="ssridersb" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders (bootleg 4 Players ver ADD)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ssriders2" board="Konami 68000"> + <parent>ssriders</parent> + <direction></direction> + <description>Sunset Riders 2 (bootleg 4 Players ver ADD)</description> + <year>1991</year> + <manufacturer>bootleg</manufacturer> + </game>--> + <game name="thndrx2" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Thunder Cross II (World)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="thndrx2a" board="Konami 68000"> + <parent>thndrx2</parent> + <direction></direction> + <description>Thunder Cross II (Asia)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="thndrx2j" board="Konami 68000"> + <parent>thndrx2</parent> + <direction></direction> + <description>Thunder Cross II (Japan)</description> + <year>1991</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="prmrsocr" board="Konami 68000"> + <parent></parent> + <direction></direction> + <description>Premier Soccer (ver EAB)</description> + <year>1993</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="prmrsocrj" board="Konami 68000"> + <parent>prmrsocr</parent> + <direction></direction> + <description>Premier Soccer (ver JAB)</description> + <year>1993</year> + <manufacturer>Konami</manufacturer> + </game> + <game name="nam1975" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>NAM-1975 (NGM-001 ~ NGH-001)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="bstars" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Baseball Stars Professional (NGM-002)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="bstarsh" board="Neo Geo"> + <parent>bstars</parent> + <direction></direction> + <description>Baseball Stars Professional (NGH-002)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="tpgolf" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Top Player's Golf (NGM-003 ~ NGH-003)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mahretsu" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Mahjong Kyo Retsuden (NGM-004 ~ NGH-004)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ridhero" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Riding Hero (NGM-006 ~ NGH-006)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ridheroh" board="Neo Geo"> + <parent>ridhero</parent> + <direction></direction> + <description>Riding Hero (set 2)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="alpham2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Alpha Mission II / ASO II - Last Guardian (NGM-007 ~ NGH-007)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="alpham2p" board="Neo Geo"> + <parent>alpham2</parent> + <direction></direction> + <description>Alpha Mission II / ASO II - Last Guardian (prototype)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="cyberlip" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Cyber-Lip (NGM-010)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="superspy" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The Super Spy (NGM-011 ~ NGH-011)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mutnat" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Mutation Nation (NGM-014 ~ NGH-014)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kotm" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>King of the Monsters (set 1)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kotmh" board="Neo Geo"> + <parent>kotm</parent> + <direction></direction> + <description>King of the Monsters (set 2)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="sengoku" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Sengoku / Sengoku Denshou (NGM-017 ~ NGH-017)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="sengokuh" board="Neo Geo"> + <parent>sengoku</parent> + <direction></direction> + <description>Sengoku / Sengoku Denshou (NGH-017, US)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="burningf" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Burning Fight (NGM-018 ~ NGH-018)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="burningfh" board="Neo Geo"> + <parent>burningf</parent> + <direction></direction> + <description>Burning Fight (NGH-018, US)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="burningfpa" board="Neo Geo"> + <parent>burningf</parent> + <direction></direction> + <description>Burning Fight (prototype, ver 23.3, 910326)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="burningfp" board="Neo Geo"> + <parent>burningf</parent> + <direction></direction> + <description>Burning Fight (prototype, older)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lbowling" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>League Bowling (NGM-019 ~ NGH-019)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="gpilots" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ghost Pilots (NGM-020 ~ NGH-020)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="gpilotsh" board="Neo Geo"> + <parent>gpilots</parent> + <direction></direction> + <description>Ghost Pilots (NGH-020, US)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="joyjoy" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Puzzled / Joy Joy Kid (NGM-021 ~ NGH-021)</description> + <year>1990</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="quizdais" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Quiz Daisousa Sen - The Last Count Down (NGM-023 ~ NGH-023)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="quizdaisk" board="Neo Geo"> + <parent>quizdais</parent> + <direction></direction> + <description>Quiz Daisousa Sen - The Last Count Down (Korean release)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lresort" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Last Resort</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lresortp" board="Neo Geo"> + <parent>lresort</parent> + <direction></direction> + <description>Last Resort (prototype)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="eightman" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Eight Man (NGM-025 ~ NGH-025)</description> + <year>1991</year> + <manufacturer>SNK / Pallas</manufacturer> + </game> + <game name="legendos" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Legend of Success Joe / Ashita no Joe Densetsu</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="2020bb" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>2020 Super Baseball (set 1)</description> + <year>1991</year> + <manufacturer>SNK / Pallas</manufacturer> + </game> + <game name="2020bba" board="Neo Geo"> + <parent>2020bb</parent> + <direction></direction> + <description>2020 Super Baseball (set 2)</description> + <year>1991</year> + <manufacturer>SNK / Pallas</manufacturer> + </game> + <game name="2020bbh" board="Neo Geo"> + <parent>2020bb</parent> + <direction></direction> + <description>2020 Super Baseball (set 3)</description> + <year>1991</year> + <manufacturer>SNK / Pallas</manufacturer> + </game> + <game name="socbrawl" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Soccer Brawl (NGM-031)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="socbrawlh" board="Neo Geo"> + <parent>socbrawl</parent> + <direction></direction> + <description>Soccer Brawl (NGH-031)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fatfury1" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Fatal Fury - King of Fighters / Garou Densetsu - Shukumei no Tatakai (NGM-033 ~ NGH-033)</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="roboarmy" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Robo Army</description> + <year>1991</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fbfrenzy" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Football Frenzy (NGM-034 ~ NGH-034)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kotm2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>King of the Monsters 2 - The Next Thing (NGM-039 ~ NGH-039)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kotm2p" board="Neo Geo"> + <parent>kotm2</parent> + <direction></direction> + <description>King of the Monsters 2 - The Next Thing (prototype)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="sengoku2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Sengoku 2 / Sengoku Denshou 2</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="bstars2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Baseball Stars 2</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="quizdai2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Quiz Meitantei Neo & Geo - Quiz Daisousa Sen part 2 (NGM-042 ~ NGH-042)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="3countb" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>3 Count Bout / Fire Suplex (NGM-043 ~ NGH-043)</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="aof" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Art of Fighting / Ryuuko no Ken (NGM-044 ~ NGH-044)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown / Samurai Spirits (NGM-045)</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samshoh" board="Neo Geo"> + <parent>samsho</parent> + <direction></direction> + <description>Samurai Shodown / Samurai Spirits (NGH-045)</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="tophuntr" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Top Hunter - Roddy & Cathy (NGM-046)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="tophuntrh" board="Neo Geo"> + <parent>tophuntr</parent> + <direction></direction> + <description>Top Hunter - Roddy & Cathy (NGH-046)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fatfury2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Fatal Fury 2 / Garou Densetsu 2 - Arata-naru Tatakai (NGM-047 ~ NGH-047)</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ssideki" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Super Sidekicks / Tokuten Ou</description> + <year>1992</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof94" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '94 (NGM-055 ~ NGH-055)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="aof2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="aof2a" board="Neo Geo"> + <parent>aof2</parent> + <direction></direction> + <description>Art of Fighting 2 / Ryuuko no Ken 2 (NGH-056)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fatfursp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Fatal Fury Special / Garou Densetsu Special (NGM-058 ~ NGH-058, set 1)</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fatfurspa" board="Neo Geo"> + <parent>fatfursp</parent> + <direction></direction> + <description>Fatal Fury Special / Garou Densetsu Special (NGM-058 ~ NGH-058, set 2)</description> + <year>1993</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="savagere" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Savage Reign / Fu'un Mokushiroku - Kakutou Sousei</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ssideki2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Super Sidekicks 2 - The World Championship / Tokuten Ou 2 - Real Fight Football (NGM-061 ~ NGH-061)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown II / Shin Samurai Spirits - Haohmaru Jigokuhen (NGM-063 ~ NGH-063)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho2k" board="Neo Geo"> + <parent>samsho2</parent> + <direction></direction> + <description>Saulabi Spirits / Jin Saulabi Tu Hon (Korean release of Samurai Shodown II)</description> + <year>1994</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fatfury3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - Haruka-naru Tatakai (NGM-069 ~ NGH-069)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ssideki3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Super Sidekicks 3 - The Next Glory / Tokuten Ou 3 - Eikou e no Michi</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof95" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '95 (NGM-084)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof95a" board="Neo Geo"> + <parent>kof95</parent> + <direction></direction> + <description>The King of Fighters '95 (NGM-084, alt board)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof95h" board="Neo Geo"> + <parent>kof95</parent> + <direction></direction> + <description>The King of Fighters '95 (NGH-084)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho3h" board="Neo Geo"> + <parent>samsho3</parent> + <direction></direction> + <description>Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGH-087)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="fswords" board="Neo Geo"> + <parent>samsho3</parent> + <direction></direction> + <description>Fighters Swords (Korean release of Samurai Shodown III)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbff1" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095 ~ NGH-095)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbff1a" board="Neo Geo"> + <parent>rbff1</parent> + <direction></direction> + <description>Real Bout Fatal Fury / Real Bout Garou Densetsu (bug fix revision)</description> + <year>1995</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="aof3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="aof3k" board="Neo Geo"> + <parent>aof3</parent> + <direction></direction> + <description>Art of Fighting 3 - The Path of the Warrior (Korean release)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof96" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '96 (NGM-214)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof96h" board="Neo Geo"> + <parent>kof96</parent> + <direction></direction> + <description>The King of Fighters '96 (NGH-214)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="ssideki4" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The Ultimate 11 - The SNK Football Championship / Tokuten Ou - Honoo no Libero</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kizuna" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Kizuna Encounter - Super Tag Battle / Fu'un Super Tag Battle</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kizuna4p" board="Neo Geo"> + <parent>kizuna</parent> + <direction></direction> + <description>Kizuna Encounter - Super Tag Battle 4 Way Battle Version / Fu'un Super Tag Battle Special Version</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho4" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown IV - Amakusa's Revenge / Samurai Spirits - Amakusa Kourin (NGM-222 ~ NGH-222)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="samsho4k" board="Neo Geo"> + <parent>samsho4</parent> + <direction></direction> + <description>Pae Wang Jeon Seol / Legend of a Warrior (Korean censored Samurai Shodown IV)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbffspec" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbffspeck" board="Neo Geo"> + <parent>rbffspec</parent> + <direction></direction> + <description>Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special (Korean release)</description> + <year>1996</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof97" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '97 (NGM-2320)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof97h" board="Neo Geo"> + <parent>kof97</parent> + <direction></direction> + <description>The King of Fighters '97 (NGH-2320)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof97k" board="Neo Geo"> + <parent>kof97</parent> + <direction></direction> + <description>The King of Fighters '97 (Korean release)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof97pls" board="Neo Geo"> + <parent>kof97</parent> + <direction></direction> + <description>The King of Fighters '97 Plus (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof97oro" board="Neo Geo"> + <parent>kof97</parent> + <direction></direction> + <description>The King of Fighters '97 Chongchu Jianghu Plus 2003 (bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kog" board="Neo Geo"> + <parent>kof97</parent> + <direction></direction> + <description>King of Gladiator (The King of Fighters '97 bootleg)</description> + <year>1997</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="lastblad" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGM-2340)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lastbladh" board="Neo Geo"> + <parent>lastblad</parent> + <direction></direction> + <description>The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGH-2340)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lastsold" board="Neo Geo"> + <parent>lastblad</parent> + <direction></direction> + <description>The Last Soldier (Korean release of The Last Blade)</description> + <year>1997</year> + <manufacturer>SNK</manufacturer> + </game> + <!-- <game name="irrmaze" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The Irritating Maze / Ultra Denryu Iraira Bou</description> + <year>1997</year> + <manufacturer>SNK / Saurus</manufacturer> + </game>--> + <game name="rbff2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - The Newcomers (NGM-2400)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbff2h" board="Neo Geo"> + <parent>rbff2</parent> + <direction></direction> + <description>Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - The Newcomers (NGH-2400)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="rbff2k" board="Neo Geo"> + <parent>rbff2</parent> + <direction></direction> + <description>Real Bout Fatal Fury 2 - The Newcomers (Korean release)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mslug2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug 2 - Super Vehicle-001/II (NGM-2410 ~ NGH-2410)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mslug2t" board="Neo Geo"> + <parent>mslug2</parent> + <direction></direction> + <description>Metal Slug 2 Turbo (NGM-9410)</description> + <year>2015</year> + <manufacturer>Hack</manufacturer> + </game> + <game name="kof98" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '98 - The Slugfest / King of Fighters '98 - Dream Match Never Ends (NGM-2420)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof98a" board="Neo Geo"> + <parent>kof98</parent> + <direction></direction> + <description>The King of Fighters '98 - The Slugfest / King of Fighters '98 - Dream Match Never Ends (NGM-2420, alt board)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof98k" board="Neo Geo"> + <parent>kof98</parent> + <direction></direction> + <description>The King of Fighters '98 - The Slugfest / King of Fighters '98 - Dream Match Never Ends (Korean board)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof98ka" board="Neo Geo"> + <parent>kof98</parent> + <direction></direction> + <description>The King of Fighters '98 - The Slugfest / King of Fighters '98 - Dream Match Never Ends (Korean board 2)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof98h" board="Neo Geo"> + <parent>kof98</parent> + <direction></direction> + <description>The King of Fighters '98 - The Slugfest / King of Fighters '98 - Dream Match Never Ends (NGH-2420)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="lastbld2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (NGM-2430 ~ NGH-2430)</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="neocup98" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Neo-Geo Cup '98 - The Road to the Victory</description> + <year>1998</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mslugx" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug X - Super Vehicle-001 (NGM-2500 ~ NGH-2500)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof99" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters '99 - Millennium Battle (NGM-2510)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof99h" board="Neo Geo"> + <parent>kof99</parent> + <direction></direction> + <description>The King of Fighters '99 - Millennium Battle (NGH-2510)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof99e" board="Neo Geo"> + <parent>kof99</parent> + <direction></direction> + <description>The King of Fighters '99 - Millennium Battle (earlier)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof99k" board="Neo Geo"> + <parent>kof99</parent> + <direction></direction> + <description>The King of Fighters '99 - Millennium Battle (Korean release)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof99p" board="Neo Geo"> + <parent>kof99</parent> + <direction></direction> + <description>The King of Fighters '99 - Millennium Battle (prototype)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="garou" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Garou - Mark of the Wolves (NGM-2530)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="garouh" board="Neo Geo"> + <parent>garou</parent> + <direction></direction> + <description>Garou - Mark of the Wolves (NGM-2530 ~ NGH-2530)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="garoup" board="Neo Geo"> + <parent>garou</parent> + <direction></direction> + <description>Garou - Mark of the Wolves (prototype)</description> + <year>1999</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="garoubl" board="Neo Geo"> + <parent>garou</parent> + <direction></direction> + <description>Garou - Mark of the Wolves (bootleg)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mslug3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug 3 (NGM-2560)</description> + <year>2000</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mslug3h" board="Neo Geo"> + <parent>mslug3</parent> + <direction></direction> + <description>Metal Slug 3 (NGH-2560)</description> + <year>2000</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="mslug3b6" board="Neo Geo"> + <parent>mslug3</parent> + <direction></direction> + <description>Metal Slug 6 (Metal Slug 3 bootleg)</description> + <year>2000</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof2000" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters 2000 (NGM-2570 ~ NGH-2570)</description> + <year>2000</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="kof2000n" board="Neo Geo"> + <parent>kof2000</parent> + <direction></direction> + <description>The King of Fighters 2000 (not encrypted)</description> + <year>2000</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="zupapa" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Zupapa!</description> + <year>2001</year> + <manufacturer>SNK</manufacturer> + </game> + <game name="sengoku3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Sengoku 3 / Sengoku Densho 2001</description> + <year>2001</year> + <manufacturer>Noise Factory / SNK</manufacturer> + </game> + <game name="kof2001" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters 2001 (NGM-262?)</description> + <year>2001</year> + <manufacturer>Eolith / SNK</manufacturer> + </game> + <game name="kof2001h" board="Neo Geo"> + <parent>kof2001</parent> + <direction></direction> + <description>The King of Fighters 2001 (NGH-2621)</description> + <year>2001</year> + <manufacturer>Eolith / SNK</manufacturer> + </game> + <game name="cthd2003" board="Neo Geo"> + <parent>kof2001</parent> + <direction></direction> + <description>Crouching Tiger Hidden Dragon 2003 (The King of Fighters 2001 bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ct2k3sp" board="Neo Geo"> + <parent>kof2001</parent> + <direction></direction> + <description>Crouching Tiger Hidden Dragon 2003 Super Plus (The King of Fighters 2001 bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ct2k3sa" board="Neo Geo"> + <parent>kof2001</parent> + <direction></direction> + <description>Crouching Tiger Hidden Dragon 2003 Super Plus alternate (The King of Fighters 2001 bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof2002" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters 2002 (NGM-2650 ~ NGH-2650)</description> + <year>2002</year> + <manufacturer>Eolith / Playmore</manufacturer> + </game> + <game name="kof2002b" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 2002 (bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k2pls" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 2002 Plus (bootleg set 1)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k2pla" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 2002 Plus (bootleg set 2)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k2mp" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 2002 Magic Plus (bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k2mp2" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 2002 Magic Plus II (bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof10th" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 10th Anniversary (The King of Fighters 2002 bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf10thep" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 10th Anniversary Extra Plus (The King of Fighters 2002 bootleg)</description> + <year>2005</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k5uni" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters 10th Anniversary 2005 Unique (The King of Fighters 2002 bootleg)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof2k4se" board="Neo Geo"> + <parent>kof2002</parent> + <direction></direction> + <description>The King of Fighters Special Edition 2004 (The King of Fighters 2002 bootleg)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="mslug5" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug 5 (NGM-2680)</description> + <year>2003</year> + <manufacturer>SNK Playmore</manufacturer> + </game> + <game name="mslug5h" board="Neo Geo"> + <parent>mslug5</parent> + <direction></direction> + <description>Metal Slug 5 (NGH-2680)</description> + <year>2003</year> + <manufacturer>SNK Playmore</manufacturer> + </game> + <game name="ms5plus" board="Neo Geo"> + <parent>mslug5</parent> + <direction></direction> + <description>Metal Slug 5 Plus (bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="svc" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>SNK vs. Capcom - SVC Chaos (NGM-2690 ~ NGH-2690)</description> + <year>2003</year> + <manufacturer>SNK Playmore</manufacturer> + </game> + <game name="svcboot" board="Neo Geo"> + <parent>svc</parent> + <direction></direction> + <description>SNK vs. Capcom - SVC Chaos (bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="svcplus" board="Neo Geo"> + <parent>svc</parent> + <direction></direction> + <description>SNK vs. Capcom - SVC Chaos Plus (bootleg set 1)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="svcplusa" board="Neo Geo"> + <parent>svc</parent> + <direction></direction> + <description>SNK vs. Capcom - SVC Chaos Plus (bootleg set 2)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="svcsplus" board="Neo Geo"> + <parent>svc</parent> + <direction></direction> + <description>SNK vs. Capcom - SVC Chaos Super Plus (bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="samsho5" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown V / Samurai Spirits Zero (NGM-2700)</description> + <year>2003</year> + <manufacturer>Yuki Enterprise / SNK Playmore</manufacturer> + </game> + <game name="samsho5h" board="Neo Geo"> + <parent>samsho5</parent> + <direction></direction> + <description>Samurai Shodown V / Samurai Spirits Zero (NGH-2700)</description> + <year>2003</year> + <manufacturer>Yuki Enterprise / SNK Playmore</manufacturer> + </game> + <game name="samsho5b" board="Neo Geo"> + <parent>samsho5</parent> + <direction></direction> + <description>Samurai Shodown V / Samurai Spirits Zero (bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kof2003" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>The King of Fighters 2003 (NGM-2710)</description> + <year>2003</year> + <manufacturer>SNK Playmore</manufacturer> + </game> + <game name="kof2003h" board="Neo Geo"> + <parent>kof2003</parent> + <direction></direction> + <description>The King of Fighters 2003 (NGH-2710)</description> + <year>2003</year> + <manufacturer>SNK Playmore</manufacturer> + </game> + <game name="kf2k3bl" board="Neo Geo"> + <parent>kof2003</parent> + <direction></direction> + <description>The King of Fighters 2003 (bootleg set 1)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k3bla" board="Neo Geo"> + <parent>kof2003</parent> + <direction></direction> + <description>The King of Fighters 2003 (bootleg set 2)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k3pl" board="Neo Geo"> + <parent>kof2003</parent> + <direction></direction> + <description>The King of Fighters 2004 Plus / Hero (The King of Fighters 2003 bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kf2k3upl" board="Neo Geo"> + <parent>kof2003</parent> + <direction></direction> + <description>The King of Fighters 2004 Ultra Plus (The King of Fighters 2003 bootleg)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="samsh5sp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Samurai Shodown V Special / Samurai Spirits Zero Special (NGM-2720)</description> + <year>2004</year> + <manufacturer>Yuki Enterprise / SNK Playmore</manufacturer> + </game> + <game name="samsh5sph" board="Neo Geo"> + <parent>samsh5sp</parent> + <direction></direction> + <description>Samurai Shodown V Special / Samurai Spirits Zero Special (NGH-2720, 2nd release, less censored)</description> + <year>2004</year> + <manufacturer>Yuki Enterprise / SNK Playmore</manufacturer> + </game> + <game name="samsh5spho" board="Neo Geo"> + <parent>samsh5sp</parent> + <direction></direction> + <description>Samurai Shodown V Special / Samurai Spirits Zero Special (NGH-2720, 1st release, censored)</description> + <year>2004</year> + <manufacturer>Yuki Enterprise / SNK Playmore</manufacturer> + </game> + <game name="maglord" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Magician Lord (NGM-005)</description> + <year>1990</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="maglordh" board="Neo Geo"> + <parent>maglord</parent> + <direction></direction> + <description>Magician Lord (NGH-005)</description> + <year>1990</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="ncombat" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ninja Combat (NGM-009)</description> + <year>1990</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="ncombath" board="Neo Geo"> + <parent>ncombat</parent> + <direction></direction> + <description>Ninja Combat (NGH-009)</description> + <year>1990</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="bjourney" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Blue's Journey / Raguy (ALM-001 ~ ALH-001)</description> + <year>1990</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="crsword" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Crossed Swords (ALM-002 ~ ALH-002)</description> + <year>1991</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="trally" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Thrash Rally (ALM-003 ~ ALH-003)</description> + <year>1991</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="ncommand" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ninja Commando</description> + <year>1992</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="wh1" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>World Heroes (ALM-005)</description> + <year>1992</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="wh1h" board="Neo Geo"> + <parent>wh1</parent> + <direction></direction> + <description>World Heroes (ALH-005)</description> + <year>1992</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="wh1ha" board="Neo Geo"> + <parent>wh1</parent> + <direction></direction> + <description>World Heroes (set 3)</description> + <year>1992</year> + <manufacturer>Alpha Denshi Co.</manufacturer> + </game> + <game name="wh2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>World Heroes 2 (ALM-006 ~ ALH-006)</description> + <year>1993</year> + <manufacturer>ADK</manufacturer> + </game> + <game name="wh2j" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>World Heroes 2 Jet (ADM-007 ~ ADH-007)</description> + <year>1994</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="aodk" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008 ~ ADH-008)</description> + <year>1994</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="whp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>World Heroes Perfect</description> + <year>1995</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="moshougi" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Shougi No Tatsujin - Master of Shougi</description> + <year>1995</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="overtop" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Over Top</description> + <year>1996</year> + <manufacturer>ADK</manufacturer> + </game> + <game name="ninjamas" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ninja Master's - Haoh-ninpo-cho</description> + <year>1996</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="twinspri" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Twinkle Star Sprites</description> + <year>1996</year> + <manufacturer>ADK / SNK</manufacturer> + </game> + <game name="zintrckb" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Zintrick / Oshidashi Zentrix (bootleg of CD version)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="crswd2bl" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Crossed Swords 2 (bootleg of CD version)</description> + <year>1996</year> + <manufacturer>bootleg (Razoola)</manufacturer> + </game> + <game name="viewpoin" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Viewpoint</description> + <year>1992</year> + <manufacturer>Sammy / Aicom</manufacturer> + </game> + <game name="janshin" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Janshin Densetsu - Quest of Jongmaster</description> + <year>1994</year> + <manufacturer>Aicom</manufacturer> + </game> + <game name="pulstar" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Pulstar</description> + <year>1995</year> + <manufacturer>Aicom</manufacturer> + </game> + <game name="blazstar" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Blazing Star</description> + <year>1998</year> + <manufacturer>Yumekobo</manufacturer> + </game> + <game name="preisle2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Prehistoric Isle 2</description> + <year>1999</year> + <manufacturer>Yumekobo</manufacturer> + </game> + <game name="spinmast" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Spin Master / Miracle Adventure</description> + <year>1993</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="wjammers" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Windjammers / Flying Power Disc</description> + <year>1994</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="karnovr" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Karnov's Revenge / Fighter's History Dynamite</description> + <year>1994</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="strhoop" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Street Hoop / Street Slam / Dunk Dream (DEM-004 ~ DEH-004)</description> + <year>1994</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="ghostlop" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ghostlop (prototype)</description> + <year>1996</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="magdrop2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Magical Drop II</description> + <year>1996</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="magdrop3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Magical Drop III</description> + <year>1997</year> + <manufacturer>Data East Corporation</manufacturer> + </game> + <game name="nitd" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Nightmare in the Dark</description> + <year>2000</year> + <manufacturer>Eleven / Gavaking</manufacturer> + </game> + <game name="nitdbl" board="Neo Geo"> + <parent>nitd</parent> + <direction></direction> + <description>Nightmare in the Dark (bootleg)</description> + <year>2001</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="gururin" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Gururin</description> + <year>1994</year> + <manufacturer>Face</manufacturer> + </game> + <game name="miexchng" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Money Puzzle Exchanger / Money Idol Exchanger</description> + <year>1997</year> + <manufacturer>Face</manufacturer> + </game> + <!-- <game name="dragonsh" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Dragon's Heaven (development board)</description> + <year>1997</year> + <manufacturer>Face</manufacturer> + </game>--> + <game name="panicbom" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Panic Bomber</description> + <year>1994</year> + <manufacturer>Eighting / Hudson</manufacturer> + </game> + <game name="kabukikl" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den</description> + <year>1995</year> + <manufacturer>Hudson</manufacturer> + </game> + <game name="neobombe" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Neo Bomberman</description> + <year>1997</year> + <manufacturer>Hudson</manufacturer> + </game> + <game name="minasan" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Minasan no Okagesamadesu! Dai Sugoroku Taikai (MOM-001 ~ MOH-001)</description> + <year>1990</year> + <manufacturer>Monolith Corp.</manufacturer> + </game> + <game name="bakatono" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Bakatonosama Mahjong Manyuuki (MOM-002 ~ MOH-002)</description> + <year>1991</year> + <manufacturer>Monolith Corp.</manufacturer> + </game> + <game name="turfmast" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Neo Turf Masters / Big Tournament Golf</description> + <year>1996</year> + <manufacturer>Nazca</manufacturer> + </game> + <game name="mslug" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug - Super Vehicle-001</description> + <year>1996</year> + <manufacturer>Nazca</manufacturer> + </game> + <game name="zedblade" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Zed Blade / Operation Ragnarok</description> + <year>1994</year> + <manufacturer>NMK</manufacturer> + </game> + <game name="s1945p" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Strikers 1945 Plus</description> + <year>1999</year> + <manufacturer>Psikyo</manufacturer> + </game> + <game name="quizkof" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Quiz King of Fighters (SAM-080 ~ SAH-080)</description> + <year>1995</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="quizkofk" board="Neo Geo"> + <parent>quizkof</parent> + <direction></direction> + <description>Quiz King of Fighters (Korean release)</description> + <year>1995</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="stakwin" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Stakes Winner / Stakes Winner - GI Kinzen Seiha e no Michi</description> + <year>1995</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="ragnagrd" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ragnagard / Shin-Oh-Ken</description> + <year>1996</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="pgoal" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219)</description> + <year>1996</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="ironclad" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Choutetsu Brikin'ger - Iron Clad (prototype)</description> + <year>1996</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="ironclado" board="Neo Geo"> + <parent>ironclad</parent> + <direction></direction> + <description>Choutetsu Brikin'ger - Iron Clad (prototype, bootleg)</description> + <year>1996</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="stakwin2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Stakes Winner 2</description> + <year>1996</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="shocktro" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Shock Troopers (set 1)</description> + <year>1997</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="shocktroa" board="Neo Geo"> + <parent>shocktro</parent> + <direction></direction> + <description>Shock Troopers (set 2)</description> + <year>1997</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="shocktr2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Shock Troopers - 2nd Squad</description> + <year>1998</year> + <manufacturer>Saurus</manufacturer> + </game> + <game name="lans2004" board="Neo Geo"> + <parent>shocktr2</parent> + <direction></direction> + <description>Lansquenet 2004 (Shock Troopers - 2nd Squad bootleg)</description> + <year>1998</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="galaxyfg" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Galaxy Fight - Universal Warriors</description> + <year>1995</year> + <manufacturer>Sunsoft</manufacturer> + </game> + <game name="wakuwak7" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Waku Waku 7</description> + <year>1996</year> + <manufacturer>Sunsoft</manufacturer> + </game> + <game name="pbobblen" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Puzzle Bobble / Bust-A-Move (Neo-Geo, NGM-083)</description> + <year>1994</year> + <manufacturer>Taito</manufacturer> + </game> + <game name="pbobblenb" board="Neo Geo"> + <parent>pbobblen</parent> + <direction></direction> + <description>Puzzle Bobble / Bust-A-Move (Neo-Geo, bootleg)</description> + <year>1994</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="pbobbl2n" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo)</description> + <year>1999</year> + <manufacturer>Taito (SNK license)</manufacturer> + </game> + <game name="pnyaa" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Pochi and Nyaa</description> + <year>2003</year> + <manufacturer>Aiky / Taito</manufacturer> + </game> + <game name="marukodq" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Chibi Marukochan Deluxe Quiz</description> + <year>1995</year> + <manufacturer>Takara</manufacturer> + </game> + <game name="doubledr" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Double Dragon (Neo-Geo)</description> + <year>1995</year> + <manufacturer>Technos Japan</manufacturer> + </game> + <game name="gowcaizr" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Voltage Fighter - Gowcaizer / Choujin Gakuen Gowcaizer</description> + <year>1995</year> + <manufacturer>Technos Japan</manufacturer> + </game> + <game name="sdodgeb" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu</description> + <year>1996</year> + <manufacturer>Technos Japan</manufacturer> + </game> + <game name="tws96" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Tecmo World Soccer '96</description> + <year>1996</year> + <manufacturer>Tecmo</manufacturer> + </game> + <game name="fightfev" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Fight Fever (set 1)</description> + <year>1994</year> + <manufacturer>Viccom</manufacturer> + </game> + <game name="fightfeva" board="Neo Geo"> + <parent>fightfev</parent> + <direction></direction> + <description>Fight Fever (set 2)</description> + <year>1994</year> + <manufacturer>Viccom</manufacturer> + </game> + <game name="pspikes2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Power Spikes II (NGM-068)</description> + <year>1994</year> + <manufacturer>Video System Co.</manufacturer> + </game> + <game name="sonicwi2" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Aero Fighters 2 / Sonic Wings 2</description> + <year>1994</year> + <manufacturer>Video System Co.</manufacturer> + </game> + <game name="sonicwi3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Aero Fighters 3 / Sonic Wings 3</description> + <year>1995</year> + <manufacturer>Video System Co.</manufacturer> + </game> + <game name="popbounc" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Pop 'n Bounce / Gapporin</description> + <year>1997</year> + <manufacturer>Video System Co.</manufacturer> + </game> + <game name="froman2b" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Idol Mahjong Final Romance 2 (Neo-Geo, bootleg of CD version)</description> + <year>1995</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="androdun" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Andro Dunos (NGM-049 ~ NGH-049)</description> + <year>1992</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="puzzledp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Puzzle De Pon!</description> + <year>1995</year> + <manufacturer>Taito (Visco license)</manufacturer> + </game> + <game name="neomrdo" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Neo Mr. Do!</description> + <year>1996</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="goalx3" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Goal! Goal! Goal!</description> + <year>1995</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="neodrift" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Neo Drift Out - New Technology</description> + <year>1996</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="breakers" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Breakers</description> + <year>1996</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="puzzldpr" board="Neo Geo"> + <parent>puzzledp</parent> + <direction></direction> + <description>Puzzle De Pon! R!</description> + <year>1997</year> + <manufacturer>Taito (Visco license)</manufacturer> + </game> + <game name="breakrev" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Breakers Revenge</description> + <year>1998</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="flipshot" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Battle Flip Shot</description> + <year>1998</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="ctomaday" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Captain Tomaday</description> + <year>1999</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="ganryu" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Ganryu / Musashi Ganryuki</description> + <year>1999</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="bangbead" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Bang Bead</description> + <year>2000</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="b2b" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Bang Bang Busters (2010 NCI release)</description> + <year>2000</year> + <manufacturer>Visco</manufacturer> + </game> + <game name="mslug4" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Metal Slug 4 (NGM-2630)</description> + <year>2002</year> + <manufacturer>Mega / Playmore</manufacturer> + </game> + <game name="mslug4h" board="Neo Geo"> + <parent>mslug4</parent> + <direction></direction> + <description>Metal Slug 4 (NGH-2630)</description> + <year>2002</year> + <manufacturer>Mega / Playmore</manufacturer> + </game> + <game name="ms4plus" board="Neo Geo"> + <parent>mslug4</parent> + <direction></direction> + <description>Metal Slug 4 Plus (bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="rotd" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Rage of the Dragons (NGM-2640?)</description> + <year>2002</year> + <manufacturer>Evoga / Playmore</manufacturer> + </game> + <game name="rotdh" board="Neo Geo"> + <parent>rotd</parent> + <direction></direction> + <description>Rage of the Dragons (NGH-2640?)</description> + <year>2002</year> + <manufacturer>Evoga / Playmore</manufacturer> + </game> + <game name="matrim" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Matrimelee / Shin Gouketsuji Ichizoku Toukon (NGM-2660 ~ NGH-2660)</description> + <year>2002</year> + <manufacturer>Noise Factory / Atlus</manufacturer> + </game> + <game name="matrimbl" board="Neo Geo"> + <parent>matrim</parent> + <direction></direction> + <description>Matrimelee / Shin Gouketsuji Ichizoku Toukon (bootleg)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="jockeygp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Jockey Grand Prix (set 1)</description> + <year>2001</year> + <manufacturer>Sun Amusement / BrezzaSoft</manufacturer> + </game> + <game name="jockeygpa" board="Neo Geo"> + <parent>jockeygp</parent> + <direction></direction> + <description>Jockey Grand Prix (set 2)</description> + <year>2001</year> + <manufacturer>Sun Amusement / BrezzaSoft</manufacturer> + </game> + <!-- <game name="vliner" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>V-Liner (set 1)</description> + <year>2001</year> + <manufacturer>Dyna / BrezzaSoft</manufacturer> + </game> + <game name="vlinero" board="Neo Geo"> + <parent>vliner</parent> + <direction></direction> + <description>V-Liner (set 2)</description> + <year>2001</year> + <manufacturer>Dyna / BrezzaSoft</manufacturer> + </game> + <game name="diggerma" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Digger Man (prototype)</description> + <year>2000</year> + <manufacturer>Kyle Hodgetts</manufacturer> + </game> + <game name="sbp" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Super Bubble Pop</description> + <year>2004</year> + <manufacturer>Vektorlogic</manufacturer> + </game>--> + <game name="lasthope" board="Neo Geo"> + <parent></parent> + <direction></direction> + <description>Last Hope (bootleg AES to MVS conversion, no coin support)</description> + <year>2005</year> + <manufacturer>NG:DEV.TEAM</manufacturer> + </game> + <!--<game name="starfigh" board="SunA8"> + <parent></parent> + <direction>90</direction> + <description>Star Fighter (v1)</description> + <year>1990</year> + <manufacturer>SunA</manufacturer> + </game>--> + <game name="shadowld" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Shadowland (YD3)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="youkaidk2" board="Namco System 1"> + <parent>shadowld</parent> + <direction>180</direction> + <description>Yokai Douchuuki (Japan, new version (YD2, Rev B))</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="youkaidk1" board="Namco System 1"> + <parent>shadowld</parent> + <direction>180</direction> + <description>Yokai Douchuuki (Japan, old version (YD1))</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="dspirit" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Dragon Spirit (new version (DS3))</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="dspirit2" board="Namco System 1"> + <parent>dspirit</parent> + <direction>90</direction> + <description>Dragon Spirit (DS2)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="dspirit1" board="Namco System 1"> + <parent>dspirit</parent> + <direction>90</direction> + <description>Dragon Spirit (old version (DS1))</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="blazer" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Blazer (Japan)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="quester" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Quester (Japan)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="questers" board="Namco System 1"> + <parent>quester</parent> + <direction>90</direction> + <description>Quester Special Edition (Japan)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="pacmania" board="Namco System 1"> + <parent></parent> + <direction>270</direction> + <description>Pac-Mania</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="pacmaniao" board="Namco System 1"> + <parent>pacmania</parent> + <direction>270</direction> + <description>Pac-Mania (111187 sound program)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="pacmaniaj" board="Namco System 1"> + <parent>pacmania</parent> + <direction>90</direction> + <description>Pac-Mania (Japan)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="galaga88" board="Namco System 1"> + <parent></parent> + <direction>270</direction> + <description>Galaga '88</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="galaga88a" board="Namco System 1"> + <parent>galaga88</parent> + <direction>90</direction> + <description>Galaga '88 (02-03-88)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="galaga88j" board="Namco System 1"> + <parent>galaga88</parent> + <direction>90</direction> + <description>Galaga '88 (Japan)</description> + <year>1987</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="ws" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>World Stadium (Japan)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="berabohm" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Beraboh Man (Japan, Rev C)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="berabohmb" board="Namco System 1"> + <parent>berabohm</parent> + <direction>180</direction> + <description>Beraboh Man (Japan, Rev B)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <!-- <game name="mmaze" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Marchen Maze (Japan)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game>--> + <game name="bakutotu" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Bakutotsu Kijuutei</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="wldcourt" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>World Court (Japan)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="splatter" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Splatter House (World, new version (SH3))</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="splatter2" board="Namco System 1"> + <parent>splatter</parent> + <direction>180</direction> + <description>Splatter House (World, old version (SH2))</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="splatterj" board="Namco System 1"> + <parent>splatter</parent> + <direction>180</direction> + <description>Splatter House (Japan, SH1)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="faceoff" board="Namco System 1"> + <parent></parent> + <direction>180</direction> + <description>Face Off (Japan 2 Players)</description> + <year>1988</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="rompers" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Rompers (Japan, new version (Rev B))</description> + <year>1989</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="romperso" board="Namco System 1"> + <parent>rompers</parent> + <direction>90</direction> + <description>Rompers (Japan, old version)</description> + <year>1989</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="blastoff" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Blast Off (Japan)</description> + <year>1989</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="ws89" board="Namco System 1"> + <parent>ws</parent> + <direction>180</direction> + <description>World Stadium '89 (Japan)</description> + <year>1989</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="dangseed" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Dangerous Seed (Japan)</description> + <year>1989</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="ws90" board="Namco System 1"> + <parent>ws</parent> + <direction>180</direction> + <description>World Stadium '90 (Japan)</description> + <year>1990</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="pistoldm" board="Namco System 1"> + <parent></parent> + <direction></direction> + <description>Pistol Daimyo no Bouken (Japan)</description> + <year>1990</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="boxyboy" board="Namco System 1"> + <parent></parent> + <direction></direction> + <description>Boxy Boy (SB?)</description> + <year>1990</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="soukobdx" board="Namco System 1"> + <parent>boxyboy</parent> + <direction></direction> + <description>Souko Ban Deluxe (Japan, SB1)</description> + <year>1990</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="puzlclub" board="Namco System 1"> + <parent></parent> + <direction>90</direction> + <description>Puzzle Club (Japan prototype)</description> + <year>1990</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="tankfrce" board="Namco System 1"> + <parent></parent> + <direction></direction> + <description>Tank Force (US, 2 Player)</description> + <year>1991</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="tankfrce4" board="Namco System 1"> + <parent>tankfrce</parent> + <direction></direction> + <description>Tank Force (US, 4 Player)</description> + <year>1991</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="tankfrcej" board="Namco System 1"> + <parent>tankfrce</parent> + <direction></direction> + <description>Tank Force (Japan)</description> + <year>1991</year> + <manufacturer>Namco</manufacturer> + </game> + <game name="drgnwrld" board="IGS011"> + <parent></parent> + <direction></direction> + <description>Dragon World (World, V040O)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgnwrldv30" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Dragon World (World, V030O)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgnwrldv21" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Dragon World (World, V021O)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgnwrldv21j" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Zhong Guo Long (Japan, V021J)</description> + <year>1995</year> + <manufacturer>IGS / Alta</manufacturer> + </game> + <game name="drgnwrldv20j" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Zhong Guo Long (Japan, V020J)</description> + <year>1995</year> + <manufacturer>IGS / Alta</manufacturer> + </game> + <game name="drgnwrldv10c" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Zhong Guo Long (China, V010C)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgnwrldv11h" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Dong Fang Zhi Zhu (Hong Kong, V011H)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgnwrldv40k" board="IGS011"> + <parent>drgnwrld</parent> + <direction></direction> + <description>Dragon World (Korea, V040K)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <!--<game name="lhb" board="IGS011"> + <parent></parent> + <direction></direction> + <description>Long Hu Bang (China, V035C)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="lhbv33c" board="IGS011"> + <parent>lhb</parent> + <direction></direction> + <description>Long Hu Bang (China, V033C)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dbc" board="IGS011"> + <parent>lhb</parent> + <direction></direction> + <description>Da Ban Cheng (Hong Kong, V027H)</description> + <year>1995</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ryukobou" board="IGS011"> + <parent>lhb</parent> + <direction></direction> + <description>Mahjong Ryukobou (Japan, V030J)</description> + <year>1995</year> + <manufacturer>IGS / Alta</manufacturer> + </game> + <game name="lhb2" board="IGS011"> + <parent></parent> + <direction></direction> + <description>Long Hu Bang II (Hong Kong, V185H)</description> + <year>1996</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="xymg" board="IGS011"> + <parent></parent> + <direction></direction> + <description>Xing Yun Man Guan (China, V651C)</description> + <year>1996</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="wlcc" board="IGS011"> + <parent>xymg</parent> + <direction></direction> + <description>Wan Li Chang Cheng (China, V638C)</description> + <year>1996</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="vbowl" board="IGS011"> + <parent></parent> + <direction></direction> + <description>Virtua Bowling (World, V101XCM)</description> + <year>1996</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="vbowlj" board="IGS011"> + <parent>vbowl</parent> + <direction></direction> + <description>Virtua Bowling (Japan, V100JCM)</description> + <year>1996</year> + <manufacturer>IGS / Alta</manufacturer> + </game> + <game name="nkishusp" board="IGS011"> + <parent>lhb2</parent> + <direction></direction> + <description>Mahjong Nenrikishu SP (Japan, V250J)</description> + <year>1998</year> + <manufacturer>IGS / Alta</manufacturer> + </game>--> + <game name="orlegend" board="PGM"> + <parent></parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 126)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegende" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 112)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegendc" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 112, Chinese Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegendca" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. ???, Chinese Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegend111c" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 111, Chinese Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegend111t" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 111, Taiwanese Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegend111k" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 111, Korean Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="orlegend105k" board="PGM"> + <parent>orlegend</parent> + <direction></direction> + <description>Oriental Legend / Xi You Shi E Zhuan (ver. 105, Korean Board)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <!-- <game name="drgw2" board="PGM"> + <parent></parent> + <direction></direction> + <description>Dragon World II (ver. 110X, Export)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dw2v100x" board="PGM"> + <parent>drgw2</parent> + <direction></direction> + <description>Dragon World II (ver. 100X, Export)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw2j" board="PGM"> + <parent>drgw2</parent> + <direction></direction> + <description>Chuugokuryuu II (ver. 100J, Japan)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw2c" board="PGM"> + <parent>drgw2</parent> + <direction></direction> + <description>Zhong Guo Long II (ver. 100C, China)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw2hk" board="PGM"> + <parent>drgw2</parent> + <direction></direction> + <description>Dragon World II (ver. 100H, Hong Kong)</description> + <year>1997</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="killbld" board="PGM"> + <parent></parent> + <direction></direction> + <description>The Killing Blade (ver. 109, Chinese Board)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="killbld104" board="PGM"> + <parent>killbld</parent> + <direction></direction> + <description>The Killing Blade (ver. 104)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw3" board="PGM"> + <parent></parent> + <direction></direction> + <description>Dragon World 3 / Chuugokuryuu 3 Special (ver. 106)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw3105" board="PGM"> + <parent>drgw3</parent> + <direction></direction> + <description>Dragon World 3 / Chuugokuryuu 3 Special (ver. 105)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw3103" board="PGM"> + <parent>drgw3</parent> + <direction></direction> + <description>Chuugokuryuu 3 Special (Japan, ver. 103)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="drgw3100" board="PGM"> + <parent>drgw3</parent> + <direction></direction> + <description>Chuugokuryuu 3 Special (Japan, ver. 100)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dwex" board="PGM"> + <parent></parent> + <direction></direction> + <description>Dragon World 3 EX (ver. 100)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="photoy2k" board="PGM"> + <parent></parent> + <direction></direction> + <description>Photo Y2K (ver. 105)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="photoy2k104" board="PGM"> + <parent>photoy2k</parent> + <direction></direction> + <description>Photo Y2K (ver. 104)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="photoy2k102" board="PGM"> + <parent>photoy2k</parent> + <direction></direction> + <description>Photo Y2K (ver. 102, Japanese Board)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsh" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour Super Heroes / Sangoku Senki Super Heroes (ver. 104, CN)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsh103" board="PGM"> + <parent>kovsh</parent> + <direction></direction> + <description>Knights of Valour Super Heroes / Sangoku Senki Super Heroes (ver. 103, CN)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsh102" board="PGM"> + <parent>kovsh</parent> + <direction></direction> + <description>Knights of Valour Super Heroes / Sangoku Senki Super Heroes (ver. 102, CN)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsh101" board="PGM"> + <parent>kovsh</parent> + <direction></direction> + <description>Knights of Valour Super Heroes / Sangoku Senki Super Heroes (ver. 101, CN)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsh100" board="PGM"> + <parent>kovsh</parent> + <direction></direction> + <description>Knights of Valour Super Heroes / Sangoku Senki Super Heroes (ver. 100, CN)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovqhsgs" board="PGM"> + <parent>kovsh</parent> + <direction></direction> + <description>Knights of Valour: Quan Huang San Guo Special / Sangoku Senki: Quan Huang San Guo Special (ver. 303CN)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kov2" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 107, 102, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2106" board="PGM"> + <parent>kov2</parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 106, 102, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2103" board="PGM"> + <parent>kov2</parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 103, 101, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2102" board="PGM"> + <parent>kov2</parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 102, 101, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2101" board="PGM"> + <parent>kov2</parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 101, 101, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2100" board="PGM"> + <parent>kov2</parent> + <direction></direction> + <description>Knights of Valour 2 / Sangoku Senki 2 (ver. 100, 100, 100HK)</description> + <year>2000</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2p" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour 2 Plus - Nine Dragons / Sangoku Senki 2 Plus - Nine Dragons (ver. M205XX, 200, 100CN)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2p204" board="PGM"> + <parent>kov2p</parent> + <direction></direction> + <description>Knights of Valour 2 Plus - Nine Dragons / Sangoku Senki 2 Plus - Nine Dragons (ver. M204XX, 200, 100CN)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov2p202" board="PGM"> + <parent>kov2p</parent> + <direction></direction> + <description>Knights of Valour 2 Plus - Nine Dragons / Sangoku Senki 2 Plus - Nine Dragons (ver. M202XX, 200, 100CN)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="martmast" board="PGM"> + <parent></parent> + <direction></direction> + <description>Martial Masters (ver. 104, 102, 102US)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="martmastc" board="PGM"> + <parent>martmast</parent> + <direction></direction> + <description>Martial Masters (ver. 104, 102, 101CN)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="martmastc102" board="PGM"> + <parent>martmast</parent> + <direction></direction> + <description>Martial Masters (ver. 102, 101, 101CN)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2" board="PGM"> + <parent></parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (World, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (World, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (World, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2hk" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Hong Kong, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101hk" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Hong Kong, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100hk" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Hong Kong, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2k" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Korea, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101k" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Korea, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100k" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Korea, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2j" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Japan, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101j" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Japan, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100j" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Japan, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2t" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Taiwan, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101t" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Taiwan, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100t" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (Taiwan, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2c" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (China, ver. 102)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2101c" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (China, ver. 101)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddp2100c" board="PGM"> + <parent>ddp2</parent> + <direction>270</direction> + <description>DoDonPachi II - Bee Storm (China, ver. 100)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dw2001" board="PGM"> + <parent></parent> + <direction></direction> + <description>Chuugokuryuu 2001 [Dragon World 2001] (V100?, Japan)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dwpc" board="PGM"> + <parent></parent> + <direction></direction> + <description>Chuugokuryuu Pretty Chance [Dragon World Pretty Chance] (V101, Japan)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dmnfrnt" board="PGM"> + <parent></parent> + <direction></direction> + <description>Demon Front (68k label V105, ROM M105XX 08/05/02) (ARM label V105, ROM 08/05/02 S105XX)</description> + <year>2002</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dmnfrntb" board="PGM"> + <parent>dmnfrnt</parent> + <direction></direction> + <description>Demon Front (68k label V103, ROM M103XX 07/05/02) (ARM label V103, ROM 07/05/02 S103XX)</description> + <year>2002</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dmnfrnta" board="PGM"> + <parent>dmnfrnt</parent> + <direction></direction> + <description>Demon Front (68k label V102, ROM M102XX 06/19/02) (ARM label V102, ROM 05/24/02 S101XX)</description> + <year>2002</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="dmnfrntpcb" board="PGM"> + <parent>dmnfrnt</parent> + <direction></direction> + <description>Demon Front (68k label V107KR, ROM M107KR 11/03/03) (ARM label V106KR, ROM 10/16/03 S106KR) (JAMMA PCB)</description> + <year>2002</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="ddpdoj" board="PGM"> + <parent></parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou V101 (2002.04.05.Master Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ddpdoja" board="PGM"> + <parent>ddpdoj</parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou V100 (2002.04.05.Master Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ddpdojb" board="PGM"> + <parent>ddpdoj</parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou (2002.04.05 Master Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ddpdojblk" board="PGM"> + <parent>ddpdoj</parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou (2002.10.07.Black Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ddpdojblka" board="PGM"> + <parent>ddpdoj</parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou (2002.10.07 Black Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ddpdojblkbl" board="PGM"> + <parent>ddpdoj</parent> + <direction>270</direction> + <description>DoDonPachi Dai-Ou-Jou (2002.10.07 Black Ver., bootleg Knights of Valour Super Heroes conversion)</description> + <year>2012</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ket" board="PGM"> + <parent></parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2003/01/01. Master Ver.)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ket1" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2003/01/01. Master Ver.) (alt rom fill)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="keta" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2003/01/01 Master Ver.)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ketb" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2003/01/01 Master Ver)</description> + <year>2002</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="ketbl" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2003/01/01. Master Ver., bootleg cartridge conversion)</description> + <year>2002</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="ketarr" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2014/07/16 ARRANGE 1.7 VER) (hack)</description> + <year>2014</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarr151" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/06/26 ARRANGE 1.51 VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarr15" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/06/26 ARRANGE 1.5 VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarr10" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/04/17 ARRANGE VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarrs151" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/06/27 MR.STOIC 1.51 VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarrs15" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/06/27 MR.STOIC 1.5 VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="ketarrf" board="PGM"> + <parent>ket</parent> + <direction>270</direction> + <description>Ketsui: Kizuna Jigoku Tachi (2012/04/17 FAST. VER) (hack)</description> + <year>2012</year> + <manufacturer>hack (trap15)</manufacturer> + </game> + <game name="espgal" board="PGM"> + <parent></parent> + <direction>270</direction> + <description>Espgaluda (2003/10/15 Master Ver)</description> + <year>2003</year> + <manufacturer>Cave (AMI license)</manufacturer> + </game> + <game name="espgalbl" board="PGM"> + <parent>espgal</parent> + <direction>270</direction> + <description>Espgaluda (2003/10/15 Master Ver, bootleg cartridge conversion)</description> + <year>2003</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="puzzli2" board="PGM"> + <parent></parent> + <direction></direction> + <description>Puzzli 2 (ver. 100)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="puzzli2s" board="PGM"> + <parent>puzzli2</parent> + <direction></direction> + <description>Puzzli 2 Super (ver. 200)</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="killbldp" board="PGM"> + <parent></parent> + <direction></direction> + <description>The Killing Blade Plus (China, ver. 300)</description> + <year>2005</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="theglad" board="PGM"> + <parent></parent> + <direction></direction> + <description>The Gladiator / Road of the Sword / Shen Jian (M68k label V101) (ARM label V107, ROM 06/06/03 SHEN JIAN V107)</description> + <year>2003</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="theglad101" board="PGM"> + <parent>theglad</parent> + <direction></direction> + <description>The Gladiator / Road of the Sword / Shen Jian (M68k label V100) (ARM label V101, ROM 03/13/03 SHEN JIAN)</description> + <year>2003</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="theglad100" board="PGM"> + <parent>theglad</parent> + <direction></direction> + <description>The Gladiator / Road of the Sword / Shen Jian (M68k label V100) (ARM label V100, ROM 01/16/03 SHEN JIAN)</description> + <year>2003</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="thegladpcb" board="PGM"> + <parent>theglad</parent> + <direction></direction> + <description>The Gladiator / Road of the Sword / Shen Jian (M68k label V100) (ARM label V100, ROM 02/25/03 SHEN JIAN) (Japan, JAMMA PCB)</description> + <year>2003</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="svg" board="PGM"> + <parent></parent> + <direction></direction> + <description>S.V.G. - Spectral vs Generation (M68k label V200) (ARM label V200, ROM 10/11/05 S.V.G V201)</description> + <year>2005</year> + <manufacturer>IGS / Idea Factory</manufacturer> + </game> + <game name="svgtw" board="PGM"> + <parent>svg</parent> + <direction></direction> + <description>S.V.G. - Spectral vs Generation (M68k label V101TW) (ARM label V101TW, ROM 06/20/05 S.V.G V100)</description> + <year>2005</year> + <manufacturer>IGS / Idea Factory</manufacturer> + </game> + <game name="svgpcb" board="PGM"> + <parent>svg</parent> + <direction></direction> + <description>S.V.G. - Spectral vs Generation (M68k label V100JP) (ARM label V100JP, ROM 05/12/05 S.V.G V100) (Japan, JAMMA PCB)</description> + <year>2005</year> + <manufacturer>IGS / Idea Factory</manufacturer> + </game> + <game name="happy6" board="PGM"> + <parent></parent> + <direction></direction> + <description>Happy 6-in-1 (ver. 102CN)</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="happy6101" board="PGM"> + <parent>happy6</parent> + <direction></direction> + <description>Happy 6-in-1 (ver. 101CN)</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="olds" board="PGM"> + <parent></parent> + <direction></direction> + <description>Oriental Legend Special / Xi You Shi E Zhuan Super (ver. 101, Korean Board)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="olds100" board="PGM"> + <parent>olds</parent> + <direction></direction> + <description>Oriental Legend Special / Xi You Shi E Zhuan Super (ver. 100, set 1)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="olds100a" board="PGM"> + <parent>olds</parent> + <direction></direction> + <description>Oriental Legend Special / Xi You Shi E Zhuan Super (ver. 100, set 2)</description> + <year>1998</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="olds103t" board="PGM"> + <parent>olds</parent> + <direction></direction> + <description>Oriental Legend Special / Xi You Shi E Zhuan Super (ver. 103, China, Tencent) (unprotected)</description> + <year>1998</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kov" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour / Sangoku Senki (ver. 117)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov115" board="PGM"> + <parent>kov</parent> + <direction></direction> + <description>Knights of Valour / Sangoku Senki (ver. 115)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kov100" board="PGM"> + <parent>kov</parent> + <direction></direction> + <description>Knights of Valour / Sangoku Senki (ver. 100, Japanese Board)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovplus" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour Plus / Sangoku Senki Plus (ver. 119, set 1)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovplusa" board="PGM"> + <parent>kovplus</parent> + <direction></direction> + <description>Knights of Valour Plus / Sangoku Senki Plus (ver. 119, set 2)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovsgqyz" board="PGM"> + <parent>kovplus</parent> + <direction></direction> + <description>Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (bootleg, set 1)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovsgqyza" board="PGM"> + <parent>kovplus</parent> + <direction></direction> + <description>Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (bootleg, set 2)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovsgqyzb" board="PGM"> + <parent>kovplus</parent> + <direction></direction> + <description>Knights of Valour: SanGuo QunYingZhuan / Sangoku Senki: SanGuo QunYingZhuan (bootleg, set 3)</description> + <year>1999</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="puzlstar" board="PGM"> + <parent></parent> + <direction></direction> + <description>Puzzle Star (ver. 100MG)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="py2k2" board="PGM"> + <parent></parent> + <direction></direction> + <description>Photo Y2K 2</description> + <year>2001</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="pgm3in1" board="PGM"> + <parent></parent> + <direction></direction> + <description>Photo Y2K 2 (Flash 3-in-1)</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="oldsplus" board="PGM"> + <parent></parent> + <direction></direction> + <description>Oriental Legend Special Plus / Xi You Shi E Zhuan Super Plus</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovshp" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour Super Heroes Plus / Sangoku Senki Super Heroes Plus (ver. 101)</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovshpa" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour Super Heroes Plus / Sangoku Senki Super Heroes Plus (ver. 100)</description> + <year>2004</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovytzy" board="PGM"> + <parent></parent> + <direction></direction> + <description>Knights of Valour: Yi Tong Zhong Yuan / Sangoku Senki: Yi Tong Zhong Yuan (ver. 201, China)</description> + <year>1999</year> + <manufacturer>IGS</manufacturer> + </game> + <game name="kovshxas" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour: Aoshi Sanguo / Sangoku Senki: Aoshi Sanguo (ver. 202CN)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovlsqh" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour: Luan Shi Quan Huang / Sangoku Senki: Luan Shi Quan Huang (ver. 200CN)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovlsqh2" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour: Luan Shi Quan Huang 2 / Sangoku Senki: Luan Shi Quan Huang 2 (ver. 200CN)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovlsjb" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour: Luan Shi Jie Ba / Sangoku Senki: Luan Shi Jie Ba (ver. 200CN, set 1)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game> + <game name="kovlsjba" board="PGM"> + <parent>kovshp</parent> + <direction></direction> + <description>Knights of Valour: Luan Shi Jie Ba / Sangoku Senki: Luan Shi Jie Ba (ver. 200CN, set 2)</description> + <year>2004</year> + <manufacturer>bootleg</manufacturer> + </game>--> +</mame>