/*
**      $VER: Make060 1.2 (27.6.2002)
**
**      Sets AFF_68060 in ExecBase, it your accelerator soft didn't...
**      Makes your 040 Amiga emulator appear as 060 (useful with some software)
**
**      (C) Copyright 1996-200 Andreas R. Kleinert
**      All Rights Reserved.
*/

#define __USE_SYSBASE

#include <exec/types.h>
#include <exec/execbase.h>

#include <proto/exec.h>


#ifndef AFB_68060   /* if not already done within "execbase.h" */

#define AFB_68060 (7)
#define AFF_68060 (1L<<AFB_68060)

#endif /* AFB_68060 */


#include <stdlib.h>

char ver_text [] = "\0$VER: Make060 1.2 (27.6.2002)";

void main(long argc, char **argv)
{
 extern struct ExecBase *SysBase;

 Forbid();
 SysBase->AttnFlags |= AFF_68060;
 Permit();

 exit(0);
}
