home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: void _bye_setnulls(x)
- ;
- ; Parms: int x = (0 to 9)
- ;
- ; Purpose: Sets the # nulls sent after each LF char.
- ;
- ; Return: void
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_setnulls
-
- __bye_setnulls PROC
-
- push bp ;standard 'C' function entry
- mov bp,sp
-
- mov ax,ARG1 ;nulls (0-9) in AL
- mov ah,13 ;AH=13 for set nulls
- int BYE_VECT
-
- mov sp,bp ;standard 'C' exit
- pop bp
- ret
-
- __bye_setnulls ENDP
- END
-