home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
modem
/
byepc300.arc
/
BYEXLIB.ARC
/
GETTIMON.ASM
< prev
next >
Wrap
Assembly Source File
|
1987-10-26
|
562b
|
25 lines
INCLUDE MODEL.INC
;
;---------------------------------------------------------------------------
; Function: int _bye_gettimeon()
;
; Parms: void
;
; Purpose: Returns the time alloted for the caller to remain
; online for this call.
;
; Return: max time online for this call.
;---------------------------------------------------------------------------
;
PUBLIC __bye_gettimeon
__bye_gettimeon PROC
mov ah,20 ;AH=20 for get timeon
int BYE_VECT
ret
__bye_gettimeon ENDP
END