home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / DRIVERS / SRC / ptys.lzh / ptydrv.a < prev    next >
Text File  |  1990-03-08  |  2KB  |  71 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. * $Id: ptydrv.a_v 1.2.1.1 89/09/04 13:14:11 ram Exp $
  24. *
  25. * $Log:    ptydrv.a_v $
  26. * Revision 1.2.1.1  89/09/04  13:14:11  ram
  27. * added some comments
  28. * Revision 1.2  89/08/31  12:34:39  ram
  29. * *** empty log message ***
  30. *
  31.  
  32. Edition equ 0
  33.  
  34. Typ_Lang set (Drivr<<8)+Objct
  35. Attr_Rev set (ReEnt+SupStat)<<8+0
  36.  
  37.  psect ptydrv,Typ_Lang,Attr_Rev,Edition,0,Entry
  38.  
  39.  use defsfile
  40.  
  41.  page
  42. *******************
  43. * Einsprungstabelle
  44. * total dummy driver
  45. Entry
  46.  dc.w Init
  47.  dc.w Read
  48.  dc.w Write
  49.  dc.w GetStat
  50.  dc.w PutStat
  51.  dc.w TermNat
  52.  dc.w 0,0,0,0
  53.  
  54.  align
  55.  
  56. Init:
  57. Read:
  58. Write: 
  59. TermNat:
  60.  move.w #0,d0
  61.  rts
  62.  
  63. GetStat:
  64. PutStat:
  65.  move.w #E$UnkSvc,d1
  66.  ori.w #Carry,ccr
  67.  rts
  68.  
  69.