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

  1. ;----------------------------------------------------------
  2. ; EXAMPLE.HPD
  3. ;
  4. ; This text file contains the instructions to initialize a
  5. ; HP DeskJet printer
  6. ;
  7. ; (Use the TXT2BIN program to create the binary image file)
  8. ;
  9. ; HP and DeskJet 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 code
  16.  
  17. ;--------------------------------------
  18. ; Job Control
  19. ;--------------------------------------
  20. 1B "E"                  ; Reset the printer
  21. 1B "&k1W"               ; Text print mode: Bidirectional
  22.  
  23. ;--------------------------------------
  24. ; Page Formatting
  25. ;--------------------------------------
  26. 1B "&l0O"               ; Page orientation: Portrait
  27. 1B "&l2A"               ; Page size: Letter
  28. 1B "&l4D"               ; Line spacing: 4 lines/inch
  29. 1B "&l42F"              ; Text length: 42 lines
  30.  
  31. ;--------------------------------------
  32. ; Font Selection
  33. ;--------------------------------------
  34. 1B "(8U"                ; Character set: HP Roman8
  35. 1B "(s12H"              ; Font pitch: 12 chars/inch
  36. 1B "(s10V"              ; Font height: 10 points
  37. 1B "(s0S"               ; Font style: Upright
  38. 1B "(s0B"               ; Font stroke weight: Medium
  39. 1B "(s2T"               ; Font typeface: Elite
  40. 1B "(s2Q"               ; Font quality: Letter quality
  41.