home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 256_01 / fun56h.a < prev    next >
Text File  |  1988-01-08  |  2KB  |  54 lines

  1. ;---------------------------------------------------------------------
  2. ;    ASM88 FILE:     FUN56H.A     Change Directory Entry
  3. ;    ----------
  4. ;    WRITTEN:        25/10/87
  5. ;    -------
  6. ;    PURPOSE:        This is one of a series of files which take
  7. ;    -------         advantage of INT 21H functions under MS-DOS.
  8. ;                    In each case the error situation is marked by
  9. ;                    the carry flag being set.   We use the De Smet
  10. ;                    external variable '_carryf' to see whether the
  11. ;                    carry is set on return from the function.
  12. ;                    If so, the error code can be used to obtain
  13. ;                    information about the specific error.
  14. ;
  15. ;    USAGE:          int FUN56H(name1, name2, &_carryf)
  16. ;    -----           char *name1, /* pointer to ASCIIZ pathname */
  17. ;                         *name2; /* pointer to name to change
  18. ;                                    file to */
  19. ;                    char *_carryf;
  20. ;
  21. ;    DEPENDENCIES:           De Smet C V 2.44+
  22. ;    ------------
  23. ;    Copyright 1987 - Cogar Computer Services Pty. Ltd
  24. ;---------------------------------------------------------------------
  25.  
  26. CSEG
  27. PUBLIC FUN56H_
  28.  
  29. FUN56H_:
  30.     push    bp    ; normal De Smet C start
  31.     mov    bp,sp    ; point to the stack
  32.     mov    ax,ds    ; and make ES common with DS
  33.     mov    es,ax
  34. ;----------------------------------------------------------------------
  35. ;  The unique programme follows.
  36. ;----------------------------------------------------------------------
  37.     mov    dx,[bp+4]    ; address of original name
  38.     mov    di,[bp+6]    ; address of second name
  39.     mov    ah,56h    ; the Function No.
  40.     int    21h
  41.     jc    FUN56H_ERROR
  42.     xor    ax,ax    ; prepare for normal return
  43.     jmp    FUN56H_QUIT
  44. FUN56H_ERROR:
  45.     mov    si,[bp+8]    ; get address of '_carryf' variable
  46.     mov    byte [si],1    ; return with _carryf = 1
  47. ;----------------------------------------------------------------------
  48. ;  Normal programme termination.
  49. ;----------------------------------------------------------------------
  50. FUN56H_QUIT:
  51.     pop    bp    ; restore starting conditions
  52.     ret
  53. ;----------------------------------------------------------------------
  54.