home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / misc / vmm / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-24  |  2.8 KB  |  131 lines

  1. .name
  2. VMM
  3. .type
  4. OS Utility
  5. .short
  6. Virtual memory for Amigas with MMU
  7. .description
  8. VMM implements a virtual memory manager for Amigas with a 68040, 68030
  9. or 68020+68851 processor.  A localized user interface to enter all
  10. parameters and to disable certain tasks and load files from using
  11. virtual memory is also provided.  For the user interface MUI 2.3 is
  12. needed.
  13.  
  14. V3.0 includes the ability to swap out program code, memory tracking,
  15. better MMU support, an ARexx port and some other new features.
  16. .version
  17. 3.1
  18. .date
  19. 1995.08.29
  20. .author
  21. Martin Apel
  22. .reference
  23. FreshFish-Vol8-1:Useful/util/misc/VMM/
  24. 2.1
  25. FreshFish-Vol7:New/util/misc/VMM/
  26. 2.1
  27. GoldFish-Vol2-1:Files/util/misc/VMM/
  28. 2.1
  29. FreshFish-Vol6:New/util/misc/VMM/
  30. 2.0
  31. .requirements
  32. Requires OS2.0+ and a 68030 or 68040 with a functional MMU or
  33. 68020+68851
  34. At least 2 MB of RAM and a harddisk are recommended
  35. .distribution
  36. Shareware
  37. .price
  38. $20 (US), 30 DM
  39. .address
  40. Gerhart-Hauptmann-Str.5
  41. 67663 Kaiserslautern
  42. Germany
  43. .email
  44. apel@physik.uni-kl.de
  45. .docs
  46. README
  47. doc/BugReportForm
  48. doc/HISTORY
  49. doc/TestedPrograms
  50. doc/VMM.guide
  51. doc/VMMTools.guide
  52. doc/vmm_lib.doc
  53. doc/VMM_Rexx.guide
  54. doc/VMProgGuideline
  55. .described-by
  56. Dan Fish (daf@starfish.amigalib.com)
  57. .submittal
  58. Downloaded via ftp from wuarchive.wustl.edu.
  59. .execute
  60. set choice `RequestChoice "VMM" "Please select an option" "Readme" "Guide" "Install" "Run" "Cancel"`
  61. if $choice EQ "0"
  62.   quit 5
  63. endif
  64.  
  65. if $choice EQ "1"
  66.   MetaTool README TEXT
  67. endif
  68.  
  69. if $choice EQ "2"
  70.   cd doc
  71.   set filechoice `RequestFile TITLE "Select File" PATTERN "#?.guide"`
  72.   set dirchoice `pathname $filechoice`
  73.   set filechoice `basename $filechoice`
  74.   failat 21
  75.   cd $dirchoice
  76.   MetaTool $filechoice GUIDE
  77. endif
  78.  
  79. if $choice EQ "3"
  80.   cd InstallVMM
  81.   set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Deutsch" "Dansk" "Svenska" "Cancel"`
  82.   if $choice2 EQ "0"
  83.     quit 0
  84.   endif
  85.  
  86.   if $choice2 EQ "1"
  87.     Installer English VMM LANGUAGE english NOLOG
  88.   endif
  89.  
  90.   if $choice2 EQ "2"
  91.     Installer deutsch VMM LANGUAGE deutsch NOLOG
  92.   endif
  93.  
  94.   if $choice2 EQ "3"
  95.     Installer Dansk VMM LANGUAGE dansk NOLOG
  96.   endif
  97.  
  98.   if $choice2 EQ "4"
  99.     Installer Svenska VMM LANGUAGE svenska NOLOG
  100.   endif
  101. endif
  102.  
  103. if $choice EQ "4"
  104.   set tmpchoice `RequestChoice "Select Version" "Select Page Size" "4K" "8K" "Cancel"`
  105.   if $tmpchoice EQ "0"
  106.     quit 0
  107.   endif
  108.  
  109.   set tmpchoice2 `RequestChoice "Advice" "A temporary L: directory will be set up*Nin RAM: to hold the appropriate handler" "OK" "Cancel"`
  110.   if $tmpchoice2 EQ "0"
  111.     quit 0
  112.   endif
  113.  
  114.   makedir RAM:L
  115.   assign L: RAM:L ADD
  116.   if $tmpchoice EQ "1"
  117.     copy l/VMM-Handler_4K RAM:L/VMM-Handler
  118.   endif
  119.  
  120.   if $tmpchoice EQ "2"
  121.     copy l/VMM-Handler_8K RAM:L/VMM-Handler
  122.   endif
  123.  
  124.   assign LOCALE: "" ADD
  125.   assign env: env/ ADD
  126.   assign REXX: Rexx/ ADD
  127.   VMM
  128. endif
  129. .aminet-dir
  130. util/misc
  131.