home *** CD-ROM | disk | FTP | other *** search
- include asm.inc
-
- public close_file_cf
-
- .code
- extn ms_dos_strerror
-
-
- ;; close file cf
- ;
- ; entry BX handle
- ; Cf error flag
- ; exit Cf if error flag set on entry or error during close file
- ; uses AX
- ;
- close_file_cf proc
- mov ah,3Eh
- jc cfc1
- jmp ms_dos_strerror
-
- cfc1: call ms_dos_strerror
- stc
- ret
- close_file_cf endp
-
- end
-