home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
modem
/
byepc300.arc
/
BYEXLIB.ARC
/
GETTIMER.ASM
< prev
next >
Wrap
Assembly Source File
|
1987-10-26
|
613b
|
26 lines
INCLUDE MODEL.INC
;
;---------------------------------------------------------------------------
; Function: int _bye_gettimer()
;
; Parms: void
;
; Purpose: Returns the number of minutes online for the caller
; since logon. This is reset each time 'set_timeon()'
; called.
;
; Return: number of minutes online since logged on.
;---------------------------------------------------------------------------
;
PUBLIC __bye_gettimer
__bye_gettimer PROC
mov ah,18 ;AH=18 for get timer
int BYE_VECT
ret
__bye_gettimer ENDP
END