home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
compatibl
/
fake
/
fake20.e
< prev
next >
Wrap
Text File
|
1995-02-27
|
498b
|
20 lines
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