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 >
Assembly Source File  |  1987-10-26  |  562b  |  25 lines

  1.            INCLUDE MODEL.INC
  2. ;
  3. ;---------------------------------------------------------------------------
  4. ;   Function:    int _bye_gettimeon()
  5. ;
  6. ;   Parms:    void
  7. ;
  8. ;   Purpose:    Returns the time alloted for the caller to remain
  9. ;        online for this call.
  10. ;
  11. ;   Return:    max time online for this call.
  12. ;---------------------------------------------------------------------------
  13. ;
  14.            PUBLIC __bye_gettimeon
  15.  
  16. __bye_gettimeon PROC
  17.  
  18.            mov  ah,20        ;AH=20 for get timeon
  19.            int  BYE_VECT
  20.            ret
  21.  
  22. __bye_gettimeon ENDP
  23.            END
  24.  
  25.