BOOL mt = FALSE; /* by default manual timing is turned off */
if (argc == 1)
{
printf("%s (Amiga)\n",VSTRING);
printf("Portable OS Based Benchmark\n");
printf("Created by Pietro Altomani <altomanipietro@pragmanet.it>\n");
printf("Usage: %s <options>\nOptions:\n -all Perform all tests\n -gfx Perform only graphics tests\n -mem Perform only memory tests\n -disk Perform only disk tests\n -math Perform only math tests\n -o <filename> Output file name\n -freeze Freeze the machine when running\n-p <precision> Set precision. <precision> can be 'low','medium','high','higher' or 'highest'.\n-mt Turn on manual timing (beeps starting and finishing tests)\n See docs for more infos.\n",argv[0]);
exit(10);
}
for (c=0;c<argc;c++)
{
#ifndef NOFORBID
if (strcmp(argv[c],"-freeze") == 0)
{
freeze = TRUE;
}
#endif
if ((strcmp(argv[c],"-all") == 0) || (strcmp(argv[c],"-full") == 0))