home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / znode3 / z3sys / sltrap.lbr / SLTRAP.DOC next >
Encoding:
Text File  |  1993-06-08  |  1.5 KB  |  57 lines

  1. Almost every thing you need to get this RCP running is included
  2. in this package.  In addition to what is provided, you must have
  3. the following:
  4.  
  5. Z3BASE.LIB
  6. MLOAD.COM
  7.  
  8. Get everything on drive B: and type in this command line:
  9. ZASM SLTRAP.BBZ HEX;MLOAD SLTRAP.RCP=SLTRAP;ERA SLTRAP.HEX
  10.  
  11. That should provide you with a working SLTRAP.RCP.
  12. ------------
  13. SLTRAP RCP version 1.2
  14. The Handy-Dandy I/O grabber.
  15. January 15, 1986.
  16.  
  17. So how does it work?
  18.  
  19. For LIST DEVICE:
  20. The disk file is opened by the command
  21.     LOPEN filename.typ
  22. Where filename.typ is the name of the file to hold all output. 
  23.  
  24. To close the file (Write the text to disk and finish the file
  25. properly), the command is
  26.     LCLOSE
  27.  
  28. For CONSOLE DEVICE:
  29. The disk file is opened by the command
  30.     SOPEN filename.typ
  31. Where filename.typ is the name of the file to hold all output. 
  32.  
  33.   The text printed on the screen will NOT be saved to file.  TEXT
  34. WILL NOT BE SAVED UNTILL YOU HAVE PRESSED THE TRIGGER KEY. 
  35. Pressing the trigger key again will stop the flow of text to the
  36. designated file.  You may start and stop screen trapping all you
  37. like.  The default trigger is ^\.
  38.  
  39. Use the command
  40.     KEY
  41. to change the key which you would like to use a a "Trigger".
  42.  
  43. To close the file (Write the text to disk and finish the file
  44. properly), the command is
  45.     SCLOSE
  46. ------------
  47. Ok, Kids, have fun.
  48.  
  49. Paul Pomerleau
  50.  
  51. I can be reached at Lillipute Z-Node, (312) 649-1730.
  52.  1986.
  53.  
  54. So how does it work?
  55.  
  56. For LIST DEVICE:
  57. The disk file is opened by the com