home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskermit / mspeps.txt < prev    next >
Text File  |  2020-01-01  |  3KB  |  78 lines

  1. EPSON.COM                   KERMIT DISTRIBUTION                 JANUARY 1990
  2.  
  3. The EPSON.COM program is a utility that lets you print IBM PC EGA graphics
  4. screens on Epson FX and RX printers, just as the IBM-supplied GRAPHICS.COM
  5. program lets you print CGA graphics screens on IBM printers.  Here is the
  6. author's note:
  7.  
  8.   This routine is public domain for those of you who bought an EGA and
  9.   enhanced monitor and determined that you could no longer do a
  10.   Shift_Print_Screen in mode 10h (16).  If you have an IBM compatible and
  11.   an Epson FX series printer then this routine will replace the
  12.   GRAPHICS.COM routine.  I also have routines for Radio Shack DMP printers
  13.   with 8 pins (but only 7 usable for graphics) and for HP LaserJet
  14.   printers when used with an EGA.  Enjoy...
  15.  
  16.   Dr. R. Brooks Van Horn, Jr.
  17.  
  18. INSTALLATION OF EPSON.COM
  19.  
  20. First make sure you have not run IBM's GRAPHICS.COM.  If you have, then
  21. remove the invocation of GRAPHICS.COM from your AUTOEXEC.BAT file and
  22. reboot your PC (Ctrl-Alt-Del).
  23.  
  24. Run EPSON.COM only once after you start your PC.  Once you start the program,
  25. it installs itself in memory as a DOS-level printer driver for the remainder
  26. of your DOS session, occupying about 2K of memory.  There is no way to remove
  27. it.  To avoid memory fragmentation, it is best to run EPSON.COM from your
  28. AUTOEXEC.BAT file.  For example, if you have placed EPSON.COM in the top-level
  29. (root) directory of your C disk, you would add this line to AUTOEXEC.BAT:
  30.  
  31.   C:\EPSON.COM
  32.  
  33. This will install EPSON.COM automatically every time you boot your PC.
  34.  
  35. USING EPSON.COM
  36.  
  37. To print your current screen, hold down the Shift key and press Print Screen
  38. or PrtSc.
  39.  
  40. For TEXT SCREENS, printing will be normal, across the page, and you
  41. may also turn printing on and off using Ctrl-Print-Screen or Ctrl-PrtSc.
  42.  
  43. GRAPHICS SCREEN images will come out sideways on the printer, left side on
  44. top.  Make sure your screen background color is set to black (for example,
  45. using the MS-DOS Kermit command SET TERMINAL COLOR 0), or else the printout
  46. will be solid black.
  47.  
  48. PROBLEMS
  49.  
  50. This program apparently does not recover from Offline indications (that
  51. happen, for example, when the printer runs out of paper), so if you have a
  52. long graphics screen, make sure you have enough paper.
  53.  
  54. BUILDING FROM SOURCE
  55.  
  56. The EPSON.COM program is furnished on the MS-DOS Kermit 3.0 Distribution
  57. Diskette.  Also included is the assembly-language source file, EPSON.ASM.
  58. If you want to rebuild the program from the source, do this:
  59.  
  60.   MASM EPSON;
  61.   LINK EPSON;
  62.   EXE2BIN EPSON.EXE EPSON.COM
  63.   DIR EPSON
  64.  
  65. If you don't see EPSON.COM in the directory listing, but you do see EPSON.BIN,
  66. do this:
  67.  
  68.   REN EPSON.BIN EPSON.COM
  69.  
  70. Now copy the EPSON.COM file to the disk and directory you want to run it from.
  71.  
  72. Programmers are encouraged to adapt this program to work with other kinds of
  73. display adapters (such as the VGA, Hercules, etc), and other kinds of printers
  74. (like Postscript), and submit their work to Columbia University for further
  75. distribution.
  76.  
  77. End of file EPSON.HLP.
  78.