home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 1036.dms / 1036.adf / PrtDriver / printertag.asm < prev    next >
Assembly Source File  |  1977-12-31  |  929b  |  57 lines

  1. *
  2. * printer tag file for the toshiba printer
  3. *
  4.  
  5.     INCLUDE    "exec/types.i"
  6.     INCLUDE    "exec/nodes.i"
  7.     INCLUDE "exec/strings.i"
  8.     INCLUDE "devices/prtbase.i"
  9.  
  10.     XREF _Init
  11.     XREF _Expunge
  12.     XREF _PrOpen        ; called PrOpen and PrClose so as not to
  13.     XREF _PrClose        ; override the Dos Open and Close calls
  14.     XREF _CommandTable
  15.     XREF _DoSpecial
  16.     XREF _Render
  17.  
  18.     XDEF _PEDData
  19.  
  20.  
  21. VERSION        EQU     $21
  22. REVISION    EQU    $24
  23.  
  24.  
  25.     section printer,code
  26.  
  27.     moveq    #0,d0            ;in case anyone tries to run this
  28.     rts
  29.  
  30.     dc.w    VERSION
  31.     dc.w    REVISION
  32.  
  33. _PEDData:
  34.  
  35.     dc.l    printerName
  36.     dc.l    _Init
  37.     dc.l    _Expunge
  38.     dc.l    _PrOpen
  39.     dc.l    _PrClose
  40.     dc.b    PPC_COLORGFX        ; PrinterClass
  41.     dc.b    PCC_YMCB        ; ColorClass
  42.     dc.b    80            ; max columns
  43.     dc.b    1            ; num char sets
  44.     dc.w    24            ; num rows
  45.     dc.l    180*8            ; max x dots
  46.     dc.l    0            ; max y dots
  47.     dc.w    180            ; x dots/inch
  48.     dc.w    180            ; y dots/inch
  49.     dc.l    _CommandTable
  50.     dc.l    _DoSpecial
  51.     dc.l    _Render
  52.     dc.l    30
  53.     dc.l    0
  54.  
  55. printerName:
  56.     dc.b    'toshiba',0
  57.