home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-03 | 1.2 KB | 55 lines |
- .name
- DeCon
- .type
- Programming Utility
- .aminet-dir
- dev/debug
- .short
- Sends serial debug output to a console
- .description
- Many debugging utilities send their output to serial port using simple
- communication mechanism embedded in the exec.library -- the RawPutChar
- function. This simple utility patches that function, opens a window
- on the WB screen and redirects all to this window.
- .version
- 2.1
- .author
- Martin Mares
- .requirements
- - Kickstart 2.04 or higher
- - ss.library 5.0 or higher (included)
- - 68000 or higher
- .reference
- FreshFish-Vol8-1:New/dev/debug/DeCon/
- 1.0
- .distribution
- Freeware
- .email
- mjsoft@k332.feld.cvut.cz
- .docs
- DeCon.doc
- AddModule.doc
- .described-by
- Dan Fish (daf@starfish.amigalib.com)
- .submittal
- Downloaded via ftp from wuarchive.wustl.edu.
- .execute
- set choice `RequestChoice "DeCon" "Please select an option" "View Readme" "View Doc" "Cancel"`
-
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- MetaTool DeCon21.readme TEXT
- endif
-
- if $choice EQ "2"
- set filechoice `RequestFile TITLE "Select File" PATTERN "(#?.doc)"`
- set dirchoice `pathname $filechoice`
- set filechoice `basename $filechoice`
- failat 21
- cd $dirchoice
- MetaTool $filechoice TEXT
- endif
-