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

  1. _saver7   dw  ?
  2. _CREATE:
  3.   mov ds,cs
  4.   pop _saver7,ax
  5.  
  6.     Pop    CX                ;get the attribute.
  7.     Pop    DX                ;get the filename offset.
  8.     Pop    DS                ;get the segment offset.
  9.  
  10.   Mov AH,3CH    ;create a file.
  11.     Int    21H
  12.   Push  AX      ;if no error return handle.
  13.  
  14.   mov ds,cs
  15.   push _saver7
  16.   Ret
  17.