home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / DRIVERS / SRC / ptys.lzh / pty.a < prev    next >
Text File  |  1990-03-08  |  3KB  |  90 lines

  1. *        This software is copyright (C) 1989 by Reimer Mellin        *
  2. *                                                                    *
  3. *        Permission is granted to reproduce and distribute           *
  4. *        this package by any means so long as no fee is charged      *
  5. *        above a nominal handling fee and so long as this            *
  6. *        notice is always included in the copies.                    *
  7. *        Commerical use or incorporation into commercial software    *
  8. *        is prohibited without the written permission of the         *
  9. *        author.                                                     *
  10. *                                                                    *
  11. *        Other rights are reserved except as explicitly granted      *
  12. *        by written permission of the author.                        *
  13. *                Reimer Mellin                                       *
  14. *                                                                    *
  15. *                Sulenstr.8                                          *
  16. *                D-8000 Muenchen 71 (Federal Republic of Germany)    *
  17. *                                                                    *
  18. *           EMAIL:                                                   *
  19. *                mellin@lan.informatik.tu-muenchen.dbp.de            *
  20. *                ram@altger.UUCP                                     *
  21. *                ....!pyramid!tmpmbx!doitcr!ramsys!ram (home)        *
  22. *                                                                    *
  23. *
  24. * $Id: pty.a_v 1.2.1.1 89/09/04 13:13:46 ram Exp $
  25. *
  26. * $Log:    pty.a_v $
  27. * Revision 1.2.1.1  89/09/04  13:13:46  ram
  28. * added some comments
  29. * Revision 1.2  89/08/31  12:34:02  ram
  30. * *** empty log message ***
  31. *
  32.  
  33.  nam PtyMan device descriptor module
  34.  
  35. Edition equ 0 current edition
  36.  
  37.  use defsfile
  38.  
  39. TypeLang set (Devic<<8)+0
  40. Att_Revs set (ReEnt)<<8)+0
  41.  psect pty,TypeLang,Att_Revs,Edition,0,0
  42.  
  43.  dc.l 0 no port address
  44.  dc.b 0 no trap assignment
  45.  dc.b 0 no IRQ hardware interrupt level
  46.  dc.b 0 0 no polling priority
  47.  dc.b PUpdat_+Updat_ device mode capabilities
  48.  dc.w PtyMgr file manager name offset
  49.  dc.w PtyDrv device driver name offset
  50.  dc.w 0 DevCon
  51.  dc.w 0,0,0,0 reserved
  52.  dc.w OptLen option byte count
  53.  
  54. OptTbl
  55.  dc.b 0 its a SCF-like device
  56.  dc.b 0 PD_UPC
  57.  dc.b 0 PD_BSO
  58.  dc.b 0 PD_DLO
  59.  dc.b 0 PD_EKO
  60.  dc.b 0 PD_ALF
  61.  dc.b 0 PD_NUL
  62.  dc.b 0 PD_PAU
  63.  dc.b 0 PD_PAG
  64.  dc.b 0 PD_BSP
  65.  dc.b 0 PD_DEL
  66.  dc.b 0 PD_EOR
  67.  dc.b 0 PD_EOF
  68.  dc.b 0 PD_RPR
  69.  dc.b 0 PD_DUP
  70.  dc.b 0 PD_PSC
  71.  dc.b 0 PD_INT
  72.  dc.b 0 PD_QUT
  73.  dc.b 0 PD_BSE
  74.  dc.b 0 PD_OVF
  75.  dc.b 0 PD_PAR
  76.  dc.b 0 PD_BAU
  77.  dc.w echodev
  78.  dc.b 0 PD_XON
  79.  dc.b 0 PD_XOFF
  80.  dc.b 0 PD_TAB
  81.  dc.b 0 PD_TABS 
  82. OptLen equ *-OptTbl
  83.  
  84. PtyMgr dc.b "PtyMan",0  file manager
  85. PtyDrv dc.b "PtyDrv",0  device driver
  86. echodev dc.b "pty",0    correspondent device
  87.  ends
  88.