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

  1. ;---------------------------------------------------------------------
  2. ;    ASM88 FILE:     GDATIME.A     Get Date and Time
  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 GDATIME(handle, &_rdx, &_carryf)
  16. ;    -----           int handle;
  17. ;                    char *_rdx, *_carryf;
  18. ;
  19. ;                    NOTE:  Will return time in AX (normal 'int'
  20. ;                    ----   return) with date in '_rdx'.
  21. ;
  22. ;    DEPENDENCIES:           De Smet C V 2.44+
  23. ;    ------------
  24. ;    Copyright 1987 - Cogar Computer Services Pty. Ltd
  25. ;---------------------------------------------------------------------
  26.  
  27. CSEG
  28. PUBLIC GDATIME_
  29.  
  30. GDATIME_:
  31.     push    bp    ; normal De Smet C start
  32.     mov    bp,sp    ; point to the stack
  33.     mov    ax,ds    ; and make ES common with DS
  34.     mov    es,ax
  35. ;----------------------------------------------------------------------
  36. ;  The unique programme follows.
  37. ;----------------------------------------------------------------------
  38.     mov    bx,[bp+4]    ; the file handle
  39.     mov    al,0
  40.     mov    ah,57h    ; the Function No.
  41.     int    21h
  42.     jc    GDATIME_ERROR
  43.     mov    ax,cx    ; time the file was written
  44.     mov    si,[bp+6]    ; now put date into _rdx
  45.     mov    word [si],dx
  46.     jmp    GDATIME_QUIT
  47. GDATIME_ERROR:
  48.     mov    si,[bp+8]    ; get address of '_carryf' variable
  49.     mov    byte [si],1    ; return with _carryf = 1
  50. ;----------------------------------------------------------------------
  51. ;  Normal programme termination.
  52. ;----------------------------------------------------------------------
  53. GDATIME_QUIT:
  54.     pop    bp    ; restore starting conditions
  55.     ret
  56. ;----------------------------------------------------------------------
  57.