home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / printertag.asm < prev    next >
Encoding:
Assembly Source File  |  1994-06-15  |  3.5 KB  |  96 lines

  1. *
  2. * Copyright (c) 1992 Commodore-Amiga, Inc.
  3. * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  4. * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  5. * published by Addison-Wesley (ISBN 0-201-56775-X).
  6. * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  7. * information on the correct usage of the techniques and operating system 
  8. * functions presented in these examples.  The source and executable code 
  9. * of these examples may only be distributed in free electronic form, via 
  10. * bulletin board or as part of a fully non-commercial and freely 
  11. * redistributable diskette.  Both the source and executable code (including 
  12. * comments) must be included, without modification, in any copy.  This 
  13. * example may not be published in printed form or distributed with any
  14. * commercial product.  However, the programming techniques and support
  15. * routines set forth in these examples may be used in the development
  16. * of original executable software products for Commodore Amiga computers.
  17. * All other rights reserved.
  18. * This example is provided "as-is" and is subject to change; no
  19. * warranties are made.  All use is at your own risk. No liability or
  20. * responsibility is assumed.
  21. *
  22. **********************************************************************
  23. *
  24. *       printer device dependent code tag
  25. *
  26. **********************************************************************
  27.  
  28.         SECTION         printer
  29.  
  30. *------ Included Files -----------------------------------------------
  31.  
  32.         INCLUDE         "exec/types.i"
  33.         INCLUDE         "exec/nodes.i"
  34.         INCLUDE         "exec/strings.i"
  35.  
  36.         INCLUDE         "hp_rev.i"
  37.  
  38.         INCLUDE         "devices/prtbase.i"
  39.  
  40.  
  41. *------ Imported Names -----------------------------------------------
  42.  
  43.         XREF            _Init
  44.         XREF            _Expunge
  45.         XREF            _Open
  46.         XREF            _Close
  47.         XREF            _CommandTable
  48.         XREF            _PrinterSegmentData
  49.         XREF            _DoSpecial
  50.         XREF            _MsgRender
  51.         XREF            _ExtendedCharTable
  52.         XREF            _ConvFunc
  53.  
  54. *------ Exported Names -----------------------------------------------
  55.  
  56.         XDEF            _PEDData
  57.  
  58.  
  59. **********************************************************************
  60.  
  61.                 MOVEQ   #0,D0           ; show error for OpenLibrary()
  62.                 RTS
  63.                 DC.W    VERSION
  64.                 DC.W    REVISION
  65. _PEDData:
  66.                 DC.L    printerName
  67.                 DC.L    _Init
  68.                 DC.L    _Expunge
  69.                 DC.L    _Open
  70.                 DC.L    _Close
  71.                 DC.B    PPC_BWGFX       ; PrinterClass
  72.                 DC.B    PCC_BW          ; ColorClass
  73.                 DC.B    0               ; MaxColumns
  74.                 DC.B    0               ; NumCharSets
  75.                 DC.W    16               ; NumRows
  76.                 DC.L    1728             ; MaxXDots
  77.                 DC.L    0             ; MaxYDots
  78.                 DC.W    204              ; XDotsInch
  79.                 DC.W    196              ; YDotsInch
  80.                 DC.L    _CommandTable   ; Commands
  81.                 DC.L    _DoSpecial
  82.                 DC.L    _MsgRender
  83.                 DC.L    1              ; Timeout
  84.                 DC.L    0      ; 8BitChars
  85.                 DS.L    1               ; PrintMode (reserve space)
  86.                 DC.L    _ConvFunc       ; ptr to char conversion function
  87.  
  88. printerName:
  89.                 dc.b    'FaxPrinter',0
  90.  
  91.                 END
  92.