home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / MBUG / MBUG115.ARC / DBL.DOC < prev    next >
Text File  |  1979-12-31  |  2KB  |  74 lines

  1. DBL.DOC  BY: ALAN W WARREN
  2. Version of: Feb 14, 1984
  3.  
  4. DBL.ASM was written to use the features of
  5. most of the common printers to reduce the
  6. amount of paper used to list text files
  7. that are not overly wide.  What it does is
  8. to print two pages at a time on a single
  9. sheet of paper in a side by side fashion
  10. using the compressed mode of the printer.
  11. Sort of like:
  12.  
  13. xxxxxxxxxxxxxxxxxxxx   xxxxxxxxxxxxxxxxxx
  14. xxxxxxxxxxxxxxxxxxxx   xxxxxxxxxxxxxxxxxx
  15. .
  16. .
  17. .
  18. xxxxxxxxxxxxxxxxxxxx   xxxxxxxxxxxxxxxxxx
  19.  
  20.      Page [ 1]             Page [ 2]
  21.  
  22. The version that I left on RCPM was set up
  23. to run on my Epson RX-80 printer, which takes
  24. the same commands as other Epson printers and
  25. the Gemini printers as well.
  26.  
  27. To use the program enter the program name
  28. followed by the name of the file that you
  29. want to print, such as:
  30.  
  31.     A>DBL DBL.PRN
  32.     A>DBL RCPM.LST
  33.  
  34. The Feb 14, 1984 version has an added feature,
  35. it can start printing in the middle of a file.
  36. In order to do this enter things the same way
  37. as above followed by a space, the letter 'p'
  38. then the page number to start the printing on:
  39.  
  40.     A>DBL DBL.PRN P8
  41.     A>dbl b:rcpm.lst p33
  42.  
  43. Since an earlier printing may have been performed,
  44. printing will always begin on an odd page number.
  45. In the two cases above, the first example will
  46. begin printing on page 7, and the second will begin
  47. on page 33.
  48.  
  49. If you want to stop the printing at any time, merely
  50. press the space bar, and the program will terminate.
  51.  
  52.             Alan W Warren (4/09/84)
  53.  
  54. The version uploaded as DBL211.LBR is the above with
  55. the following changes, which some may like to call
  56. enhancements:
  57. 0.  Conditional assembly for the Oki Microline 82A
  58. and 92 printers is added, with the spacing set up so
  59. column width is 64 chars.  DBL211.COM is assembled
  60. for the Oki.  (Guess my brand of printer, anyone?)
  61. 1.  If a line is too long to fit in the half-page
  62. column, it is now folded onto the next line instead
  63. of being truncated.  This is an example of what a fol
  64. .. ded line looks like.
  65. 2.  To stop print, use control-X instead of space.
  66. I hit the space bar too often by accident.
  67. 3.  If the text contains formfeeds, these are now
  68. acted upon in the expected sense, namely no more text
  69. appears in that column and the text continues at the
  70. top of the next.  Print this file using DBL.COM to
  71. see what I mean.
  72.  
  73.             Greg Louis    840518:2100
  74.