home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programming
/
powerprogramming1994.iso
/
progtool
/
modem
/
byepc300.arc
/
BYEXLIB.ARC
/
BAUD.ASM
next >
Wrap
Assembly Source File
|
1987-10-25
|
535b
|
26 lines
INCLUDE MODEL.INC
;
;---------------------------------------------------------------------------
; Function: int _bye_baud()
;
; Parms: void
;
; Purpose: Returns the baud rate of the caller on line.
;
; Return: 0 = 300 bps
; 1 = 1200 bps
; 2 = 2400 bps
;---------------------------------------------------------------------------
;
PUBLIC __bye_baud
__bye_baud PROC
mov ah,7 ;AH=7 for get baud rate
int BYE_VECT
ret
__bye_baud ENDP
END