Detect-It-Easy/db/MSDOS/compiler_ApBasic.4.sg
DosX 9e621e1954 Rename and reorganize rule files
Renamed and moved numerous .sg files in the db directory to follow a more consistent naming convention and directory structure, grouping by type (e.g., compiler, cruncher, packer, protector, etc.). This improves maintainability and clarity of the signature database organization.
2026-01-25 11:20:39 +03:00

17 lines
No EOL
588 B
JavaScript

// Detect It Easy: detection rule file
// Author: hypn0 <hypn0@mail.ru>
meta("compiler", "ApBasic");
function detect() {
if (MSDOS.compareEP("eb$$8cc02ea3....268b36....8cc88ed88ec08cc82e0106....2e0106....2ea1....2e8b16....33db2e")) {
sVersion = "1.2";
sOptions = "1987-89 by Comptech Software, Inc.";
bDetected = true;
} else if (MSDOS.compareEP("eb$$8cc02ea3....268b36....8cc88ed88ec08cc82e0106....2e0106....e8....2ea1....2e8b16....33db2e")) {
sOptions = "1991 by Comptech Software, Inc.";
bDetected = true;
}
return result();
}