home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / Asm / 86LIB3.ZIP / CLOSE.8 < prev    next >
Encoding:
Text File  |  1989-01-14  |  191 b   |  13 lines

  1. _saver5   dw  ?
  2. _CLOSE:              ;closes a file.
  3.   mov ds,cs
  4.   pop _saver5
  5.  
  6.   Pop BX            ;get the handle.
  7.  
  8.     Mov    AH,3EH                ;close a file.
  9.     Int    21H
  10.  
  11.   push _saver5
  12.   Ret
  13.