home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_getc()
- ;
- ; Parms: void
- ;
- ; Purpose: Return character from the modem Rx-queue if available.
- ; The function 'rx_size()' can be used to determine if
- ; data is available in the Rx-queue.
- ;
- ; Return: EOF if no character in buffer
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_getc
-
- __bye_getc PROC
-
- mov ah,0 ;AH=0 for get char
- int BYE_VECT
- ret
-
- __bye_getc ENDP
- END
-