mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
377 B
Text
15 lines
377 B
Text
// DIE's signature file
|
|
// Author: hypn0 <hypn0@mail.ru>
|
|
|
|
init("compiler","MetaWare Professional Pascal");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(MSDOS.compareEP("b8000050b8....50cbeb..e8....2bc050e8....c3....bd....2e8e"))
|
|
{
|
|
sVersion="1983-1986";
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|