mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Rename several files in db/MSDOS to add explicit type prefixes for clearer organization and consistency. Renamed files: - Meridian_Ada.4.sg -> compiler_Meridian_Ada.4.sg - Meridian_Pascal.4.sg -> compiler_Meridian_Pascal.4.sg - Visual_Cobol.4.sg -> compiler_Visual_Cobol.4.sg - Netware_loader.1.sg -> loader_Netware_loader.1.sg - Black_fist.2.sg -> packer_Black_fist.2.sg - PROPACK_SFX.1.sg -> sfx_PROPACK_SFX.1.sg
22 lines
No EOL
793 B
JavaScript
22 lines
No EOL
793 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
meta("compiler", "Meridian Pascal");
|
|
|
|
function detect() {
|
|
if (MSDOS.compareEP("b8....501f9a########8926....8926....8c16....8c16....8c06....8c06....9a........c706")) {
|
|
sOptions = "1985-1988 by Meridian Software Systems, Inc.";
|
|
bDetected = true;
|
|
}
|
|
if (MSDOS.compareEP("b8....8ed89a########8c06....8c16....8926....a1....a3....a1....a3....a1....a3")) {
|
|
sOptions = "1985-1988 by Meridian Software Systems, Inc.";
|
|
bDetected = true;
|
|
} else if (MSDOS.compareEP("b8....8ed89a########558bec5583ec..8c06....8c16....8926....cd..8946..f646")) {
|
|
sOptions = "1985 by Meridian Software Systems, Inc.";
|
|
bDetected = true;
|
|
}
|
|
|
|
sLang = "Pascal";
|
|
|
|
return result();
|
|
} |