home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / vercheck / examples / vertestc < prev   
Text File  |  1995-02-27  |  517b  |  44 lines

  1. VerCheck 68040
  2. if warn
  3.   echo "Your CPU is 68040."
  4.   skip CheckFPU
  5. endif
  6.  
  7. VerCheck 68030
  8. if warn
  9.   echo "Your CPU is 68030."
  10.   skip CheckFPU
  11. endif
  12.  
  13. VerCheck 68020
  14. if warn
  15.   echo "Your CPU is 68020."
  16.   skip CheckFPU
  17. endif
  18.  
  19. VerCheck 68010
  20. if warn
  21.   echo "Your CPU is 68010."
  22.   skip CheckFPU
  23. endif
  24.  
  25. echo "Your CPU is 68000."
  26.  
  27. lab CheckFPU
  28.  
  29. VerCheck 68882
  30. if warn
  31.   echo "Your FPU is 68882."
  32.   skip Exit
  33. endif
  34.  
  35. VerCheck 68881
  36. if warn
  37.   echo "Your FPU is 68881."
  38.   skip Exit
  39. endif
  40.  
  41. echo "You don't have an FPU."
  42.  
  43. lab Exit
  44.