home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / turbo_c / idd.arc / src.arc / remmedia.asm < prev   
Assembly Source File  |  1989-02-13  |  521b  |  29 lines

  1.     PAGE    60, 132
  2. TITLE    RemMedia    22-Sep-88    Dummy RemMedia()        |
  3. SUBTTL    Copyright (C) 1988  Frank E. Whaley                |
  4.  
  5. ;-----------------------------------------------------------------------|
  6. ;                                    |
  7. ;    Device Driver Library                        |
  8. ;        Dummy RemMedia()                    |
  9. ;                                    |
  10. ;-----------------------------------------------------------------------|
  11.  
  12.     INCLUDE    DRIVER.EQU
  13.  
  14.     Import    ReqHdr
  15.  
  16.     Cseg
  17.  
  18. Func    RemMedia
  19.  
  20.     SetHdr    Status,Done        ; assume removable
  21.  
  22.     RET
  23.  
  24. EndF    RemMedia
  25.  
  26.     EndCS
  27.  
  28.     END                ; of RemMedia.asm
  29.