home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR4 / T2B120.ZIP / EXAMPLE.IBM < prev    next >
Text File  |  1994-01-04  |  1KB  |  35 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.  
  10.         .RADIX  10      ; Set base to decimal
  11.  
  12.         .DEFINE DC2 18
  13.         .DEFINE CAN 24
  14.         .DEFINE Esc 27  ; Escape character
  15.  
  16.  
  17. <CAN>                   ; (CAN) Clear data in print buffer
  18.  
  19. <Esc> "T"               ; Releases sub/superscript printing
  20.  
  21. <DC2>                   ; (DC2) Releases elite or compressed pitch
  22.  
  23. <Esc> "P" 0             ; Releases proportional spacing
  24. <Esc> "F"               ; Releases emphasized printing
  25. <Esc> "H"               ; Releases double-strike printing
  26. <Esc> "W" 1             ; Releases double-width printing
  27. <Esc> "-" 0             ; Releases underlining
  28. <Esc> "_" 0             ; Releases overlining
  29.  
  30. <Esc> "I" 10            ; Set print mode to Letter Quality,
  31.                         ;   12 chars/inch
  32.  
  33. <Esc> "N" 4             ; Set perforation skip to 4 lines
  34. <Esc> "A" 12            ; Set text line spacing to 12/72" or 1/6"
  35.