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

  1.            INCLUDE MODEL.INC
  2. ;
  3. ;---------------------------------------------------------------------------
  4. ;   Function:    int _bye_getnulls()
  5. ;
  6. ;   Params:    void
  7. ;
  8. ;   Purpose:    Returns the # nulls sent after each LF char.
  9. ;
  10. ;   Return:    void
  11. ;---------------------------------------------------------------------------
  12. ;
  13.            PUBLIC __bye_getnulls
  14.  
  15. __bye_getnulls PROC
  16.  
  17.            mov  ah,12        ;AH=12 for get nulls
  18.            int  BYE_VECT
  19.            ret
  20.  
  21. __bye_getnulls ENDP
  22.            END
  23.  
  24.