home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: void _bye_warmboot()
- ;
- ; Parms: <none>
- ;
- ; Purpose: Hangs up the modem and re-boots system. Used by
- ; XMDM and RBBS mainly.
- ;
- ; Return: void
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_warmboot
-
- __bye_warmboot PROC
-
- mov ah,14 ;AH=14 for boot system
- int BYE_VECT
- ret
-
- __bye_warmboot ENDP
- END
-