home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR16 / T2B120A.ZIP / EXAMPLE.HPL < prev    next >
Text File  |  1994-01-26  |  1KB  |  38 lines

  1. ;-----------------------------------------------------------
  2. ; EXAMPLE.HPL
  3. ;
  4. ; This text file contains the instructions to initialize a
  5. ; HP LaserJet IIISi (or 4) printer
  6. ;
  7. ; (Use the TXT2BIN program to create the binary image file)
  8. ;
  9. ; HP, PCL and LaserJet are U.S. registered trademarks of
  10. ; Hewlett-Packard Company.
  11. ;-----------------------------------------------------------
  12.  
  13.         .RADIX 16               ; Set base to hexadecimal
  14.  
  15.         .INCLUDE defines.16     ; Include list of control codes
  16.  
  17. ;--------------------------------------
  18. ; Job Control
  19. ;--------------------------------------
  20. <Esc> "%-12345X"                ; Universal Exit Language /
  21.                                 ;   Start of PJL
  22.  
  23. "@PJL ENTER LANGUAGE=PCL" <LF>  ; Enter PCL mode
  24.  
  25. <Esc> "E"                       ; Reset the printer
  26. <Esc> "&l1X"                    ; Number of copies = 1
  27. <Esc> "&l1S"                    ; Duplex, long-edge binding
  28.  
  29. ;--------------------------------------
  30. ; Page Control
  31. ;--------------------------------------
  32. <Esc> "&l0O"                    ; Page orientation: Portrait
  33. <Esc> "&l2A"                    ; Page size: Letter
  34. <Esc> "&l6D"                    ; Line spacing: 6 lines/inch
  35. <Esc> "&l1E"                    ; Select upper output bin
  36. <Esc> "&l60F"                   ; Text length: 60 lines
  37. <Esc> "&l1H"                    ; Main paper source feed
  38.