***********************************************************************
*
* PRINTERTAG.ASM for an Amiga printer driver for the Hewlett Packard DeskJet
*
*                    Copywrite © 1989 Creative Focus
*
*   This software is freely redistributable, as long as all code,
*   comments, and documentation are included unaltered, and no other
*   conditions are imposed on its redistribution.
*
*   THIS SOFTWARE IS PROVIDED "AS IS," AND NO GUARANTEE IS MADE OF ITS
*   FITNESS FOR ANY PURPOSE.  CREATIVE FOCUS MAY NOT BE HELD ACCOUNTABLE
*   FOR ANY DAMAGE, REAL OR IMAGINED, RESULTING FROM ITS USE OR MISUSE.
*
*                           Creative Focus
*                           Dr. Gerald Hull
*                           12 White Street
*                           Binghamton, New York  13901
*
*                           (607) 648-4082
*                           BIX:  ghull
*                           PLINK:  DRJERRY
*
***********************************************************************

*  macro from exec/strings.i

STRING      macro
      dc.b     \1
      dc.b     0
      cnop     0,2
      endm

      xref     _Init
      xref     _Expunge
      xref     _Open
      xref     _Close
      xref     _CommandTable
      xref     _DoSpecial
      xref     _Render
      xref     _ExtendedCharTable

      xdef     _PEDData

      moveq    #0,d0       * In case somebody tries to execute
      rts
      dc.w     35          * Commodore version number for 1.3
      dc.w     8           * Creative Focus version number

_PEDData
      dc.l     NAME
      dc.l     _Init
      dc.l     _Expunge
      dc.l     _Open
      dc.l     _Close
      dc.b     $01         * PrinterClass = PPC_BWGFX
      dc.b     $01         * ColorClass   = PCC_BW
      dc.b     0           * MaxColumns
      dc.b     0           * NumCharSets
      dc.w     1           * NumRows
      dc.l     2400        * MaxXDots
      dc.l     3000        * MaxYDots
      dc.w     300         * XDotsInch
      dc.w     300         * YDotsInch
      dc.l     _CommandTable
      dc.l     _DoSpecial
      dc.l     _Render
      dc.l     30          * Timeout
      dc.l     _ExtendedCharTable
      ds.l     1           * PrintMode formfeed flag on
      dc.l     0           * no ConvFunc

NAME  STRING   <'Better_DJ'>

      end
