Detect-It-Easy/db/MSDOS/TurboBasic.3.sg
Jason Hood 73382cf170 Updated & new signatures based on the work of hpyn0.
Additionally:
ELF/UPX - test "UPX!" signature at the end of the file;
MSDOS/PKLITE - fixed compare arguments;
MSDOS/WWPACK - use MSDOS, not PE;
PE/EXE joiner - removed, same signature as "Borland C".
2014-06-06 00:48:35 +10:00

15 lines
366 B
Text

// DIE's signature file
// Author: hypn0
init("compiler","Turbo Basic");
function detect(bShowType,bShowVersion,bShowOptions)
{
if(MSDOS.compareEP("2E8C......2EC706........E8....E8....25....2EA3....E8....B8....2EF706........75..32E450E8"))
{
sVersion="1.0";
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}