Detect-It-Easy/db/MSDOS/extender_PMODE.0a.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
503 B
JavaScript

// Detect It Easy: detection rule file
// Author: Jason Hood <jadoxa@yahoo.com.au>
meta("extender", "PMODE/W");
function detect() {
if (MSDOS.compare("'PMODE/W v'", 0x55)) {
sVersion = MSDOS.getString(0x5e, 4);
bDetected = true;
} else if (MSDOS.compareEP("fc1607bf....8bf757b9....f3a5061e071f5fbe....060ea4ad8be8b2..1eb8....50cb")) {
sVersion = "1.12-1.33";
sOptions = "1994-1997 by Daredevil and Tran.";
bDetected = true;
}
return result();
}