home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / asm_kit / fclose.asm < prev    next >
Assembly Source File  |  1985-06-21  |  256b  |  11 lines

  1. ;ROUTINE TO CLOSE A FILE
  2. ;
  3. closefile    proc      far
  4. ;
  5.           mov    ah,3Eh      ;close file
  6.           int    21h      ;DOS call
  7. ;
  8.           ret
  9. ;
  10. closefile    endp
  11.