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

  1. ;-----------------------------------------------------------
  2. ; EXAMPLE.IBM
  3. ;
  4. ; This text file contains the instructions to initialize an
  5. ; IBM Proprinter X24 printer
  6. ;
  7. ; (Use the TXT2BIN program to create the binary image file)
  8. ;
  9. ; IBM and Proprinter are registered trademarks of
  10. ; International Business Machines Corporation.
  11. ;-----------------------------------------------------------
  12.  
  13.         .RADIX  10      ; Set base to decimal
  14.  
  15.         .DEFINE DC2 18
  16.         .DEFINE CAN 24
  17.         .DEFINE Esc 27  ; Escape character
  18.  
  19.  
  20. <CAN>                   ; (CAN) Clear data in print buffer
  21.  
  22. <Esc> "T"               ; Releases sub/superscript printing
  23.  
  24. <DC2>                   ; (DC2) Releases elite or compressed pitch
  25.  
  26. <Esc> "P" 0             ; Releases proportional spacing
  27. <Esc> "F"               ; Releases emphasized printing
  28. <Esc> "H"               ; Releases double-strike printing
  29. <Esc> "W" 1             ; Releases double-width printing
  30. <Esc> "-" 0             ; Releases underlining
  31. <Esc> "_" 0             ; Releases overlining
  32.  
  33. <Esc> "I" 10            ; Set print mode to Letter Quality,
  34.                         ;   12 chars/inch
  35.  
  36. <Esc> "N" 4             ; Set perforation skip to 4 lines
  37. <Esc> "A" 12            ; Set text line spacing to 12/72" or 1/6"
  38.