home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / misc / bitop / product-info < prev   
Encoding:
Text File  |  1995-10-05  |  802 b   |  45 lines

  1. .name
  2. BitOp
  3. .type
  4. Programming Utility
  5. .aminet-dir
  6. dev/misc
  7. .short
  8. Bit tool; dec-hex-bin conv; calc
  9. .description
  10. A tool for creating/editing bitmasks. Also converts dec-hex-bin. And can
  11. be used as a calculator. Performs AND, OR, EOR, ADD, SUB, MUL, DIV, NOT,
  12. NEG, and SL/SR on any one or two numbers.
  13. .version
  14. 2.2
  15. .date
  16. 1995.01.29
  17. .author
  18. John Corigliano
  19. .email
  20. jcorig@strauss.udel.edu
  21. .docs
  22. BitOp.doc
  23. .described-by
  24. Dan Fish (daf@starfish.amigalib.com)
  25. .submittal
  26. Downloaded via ftp from wuarchive.wustl.edu.
  27. .execute
  28. set choice `RequestChoice "BitOp" "Please select an option" "View Readme" "View Doc" "Run Program" "Cancel"`
  29.  
  30. if $choice EQ "0"
  31.   quit 5
  32. endif
  33.  
  34. if $choice EQ "1"
  35.   MetaTool bitopv2.2.readme TEXT
  36. endif
  37.  
  38. if $choice EQ "2"
  39.   MetaTool bitop.doc TEXT
  40. endif
  41.  
  42. if $choice EQ "3"
  43.   bitop
  44. endif
  45.