home *** CD-ROM | disk | FTP | other *** search
- page 60,132
- ;
- ; The Greenleaf Comm Library
- ;
- ; Copyright (C) 1984-90 Greenleaf Software Inc. All Rights Reserved.
- ;
-
- .xlist
- include model.h
- include prologue.h
- .list
-
- pseg _asitime
-
- ; int asitime()
- ;
- ; Return Seconds part of system time
- ;
- cproc asitime,,,,,<NOSI,NODI>
- mov ax,02C00h ; get time function
- int 21h
- mov al,dh ; seconds
- xor ah,ah ; in AL only.
- cproce
-
- endps
- end