Added support for Atari ST executable.

This commit is contained in:
2017-10-16 18:01:15 +01:00
parent bfaa7fb37a
commit 91cc5f8998
8 changed files with 381 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ namespace exeinfo
MZ mzExe = new MZ(exeFs);
NE neExe = new NE(exeFs);
AtariST stExe = new AtariST(exeFs);
if (mzExe.IsMZ)
{
@@ -110,7 +111,13 @@ namespace exeinfo
}
}
if (!recognized)
if (stExe.IsAtariST)
{
recognized = true;
Console.Write(stExe.GetInfo());
}
if (!recognized)
Console.WriteLine("Executable format not recognized");
}
}