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

  1. ;*************************************************************************
  2. ;       printertag.asm
  3. ;                written Bernie Mentink Christchuch N.Z 1/2/88
  4. ;
  5. ;*************************************************************************
  6.         section printer
  7.  
  8.         include "exec/types.i"
  9.         include "exec/nodes.i"
  10.         include "exec/strings.i"
  11.         include "devices/prtbase.i"
  12.  
  13.         xref    _Init
  14.         xref    _Expunge
  15.         xref    _Open
  16.         xref    _Close
  17.         xref    _CommandTable
  18.         xref    _DoSpecial
  19.         xref    _Render
  20.  
  21.         xdef    _PEDData
  22.         xdef    .begin
  23.         xdef    _main
  24.  
  25. VERSION EQU     31
  26. REVISION        EQU     23
  27. .begin:
  28. _main:
  29.         moveq   #0,d0
  30.         rts
  31.         dc.w    VERSION
  32.         dc.w    REVISION
  33. _PEDData:
  34.         dc.l    printerName
  35.         dc.l    _Init
  36.         dc.l    _Expunge
  37.         dc.l    _Open
  38.         dc.l    _Close
  39.         dc.b    PPC_BWGFX
  40.         dc.b    PCC_BW
  41.         dc.b    80                       ; MaxColumns
  42.         dc.b    1                        ; NumCharSets
  43.         dc.w    6                        ; num of rows,sixel graphics
  44.         dc.l    2400                     ; MaxXDots, for a4 paper !!
  45.         dc.l    0                        ; MaxYDots, any length
  46.         dc.w    300                      ; XDotsInch
  47.         dc.w    300                      ; YDotsInch
  48.         dc.l    _CommandTable
  49.         dc.l    _DoSpecial
  50.         dc.l    _Render
  51.         dc.l    20
  52.         dc.l    0
  53.  
  54. printerName:
  55.         dc.b    "DEC LN03+"
  56.         dc.b    0
  57.         end
  58.