home *** CD-ROM | disk | FTP | other *** search
- OPT OSVERSION=39
- OPT STACK=10000
-
- MODULE 'exec/execbase'
-
- DEF eb=NIL:PTR TO execbase
-
- PROC main()
-
- WriteF('\n\nFAKE20 v0.1 by C.Randall on Dec 14, 1993.\n')
- WriteF(' OK. Now your OS thinks this is a 68020.\n')
- WriteF(' Remember to REBOOT after usage. (Read the docs.)\n\n')
-
- eb:=OpenLibrary('exec.library',39)
- eb.attnflags:=2 /*bit 2 signals a 68020. Other bits are cleared */
- /*because we might have a MMU/FPU. We want a plain 68020.*/
- CloseLibrary(eb)
-
- ENDPROC
-