home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_setcsw(s)
- ;
- ; Parms: int s; caller status level (0-ffffh)
- ;
- ; Purpose: Set the status level in BYE-PC for the caller
- ; currently on line.
- ;
- ; Return: void
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_setcsw
-
- __bye_setcsw PROC
-
- push bp ;standard 'C' function entry
- mov bp,sp
-
- mov cx,ARG1 ;CX=16 bit CSW
- mov ah,16 ;AH=16 for set csw
- int BYE_VECT
-
- mov sp,bp ;standard 'C' exit
- pop bp
- ret
-
- __bye_setcsw ENDP
- END
-