home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / modem / byepc300.arc / BYEXLIB.ARC / GETCSW.ASM < prev    next >
Assembly Source File  |  1987-10-26  |  541b  |  25 lines

  1.            INCLUDE MODEL.INC
  2. ;
  3. ;---------------------------------------------------------------------------
  4. ;   Function:    int _bye_getcsw()
  5. ;
  6. ;   Parms:    <none>
  7. ;
  8. ;   Purpose:    Returns the status level from BYE-PC of caller
  9. ;        currently on line.
  10. ;
  11. ;   Return:    caller status word (CSW)
  12. ;---------------------------------------------------------------------------
  13. ;
  14.            PUBLIC __bye_getcsw
  15.  
  16. __bye_getcsw   PROC
  17.  
  18.            mov  ah,15        ;AH=15 for get csw
  19.            int  BYE_VECT
  20.            ret
  21.  
  22. __bye_getcsw   ENDP
  23.            END
  24.  
  25.