home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
system
/
vercheck
/
examples
/
vertestc
< prev
Wrap
Text File
|
1995-02-27
|
517b
|
44 lines
VerCheck 68040
if warn
echo "Your CPU is 68040."
skip CheckFPU
endif
VerCheck 68030
if warn
echo "Your CPU is 68030."
skip CheckFPU
endif
VerCheck 68020
if warn
echo "Your CPU is 68020."
skip CheckFPU
endif
VerCheck 68010
if warn
echo "Your CPU is 68010."
skip CheckFPU
endif
echo "Your CPU is 68000."
lab CheckFPU
VerCheck 68882
if warn
echo "Your FPU is 68882."
skip Exit
endif
VerCheck 68881
if warn
echo "Your FPU is 68881."
skip Exit
endif
echo "You don't have an FPU."
lab Exit