home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / debug / decon / product-info < prev    next >
Fred Fish's Product-Info  |  1995-10-03  |  1KB  |  55 lines

  1. .name
  2. DeCon
  3. .type
  4. Programming Utility
  5. .aminet-dir
  6. dev/debug
  7. .short
  8. Sends serial debug output to a console
  9. .description
  10. Many debugging utilities send their output to serial port using simple
  11. communication mechanism embedded in the exec.library -- the RawPutChar
  12. function.  This simple utility patches that function, opens a window
  13. on the WB screen and redirects all to this window.
  14. .version
  15. 2.1
  16. .author
  17. Martin Mares
  18. .requirements
  19.    - Kickstart 2.04 or higher
  20.    - ss.library 5.0 or higher (included)
  21.    - 68000 or higher
  22. .reference
  23. FreshFish-Vol8-1:New/dev/debug/DeCon/
  24. 1.0
  25. .distribution
  26. Freeware
  27. .email
  28. mjsoft@k332.feld.cvut.cz
  29. .docs
  30. DeCon.doc
  31. AddModule.doc
  32. .described-by
  33. Dan Fish (daf@starfish.amigalib.com)
  34. .submittal
  35. Downloaded via ftp from wuarchive.wustl.edu.
  36. .execute
  37. set choice `RequestChoice "DeCon" "Please select an option" "View Readme" "View Doc" "Cancel"`
  38.  
  39. if $choice EQ "0"
  40.   quit 5
  41. endif
  42.  
  43. if $choice EQ "1"
  44.   MetaTool DeCon21.readme TEXT
  45. endif
  46.  
  47. if $choice EQ "2"
  48.   set filechoice `RequestFile TITLE "Select File" PATTERN "(#?.doc)"`
  49.   set dirchoice `pathname $filechoice`
  50.   set filechoice `basename $filechoice`
  51.   failat 21
  52.   cd $dirchoice
  53.   MetaTool $filechoice TEXT
  54. endif
  55.