home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVTSTART.C */
- /* */
- /* (c) Copyright 1988 Ralf Brown */
- /* All Rights Reserved */
- /* May be freely copied for noncommercial use, */
- /* provided that this copyright notice remains */
- /* intact and any changes are indicated in the */
- /* comment blocks preceding functions */
- /*================================================*/
-
- #include "tvapi.h"
-
- /*================================================*/
- /* TVtask_start restart a previously stopped task*/
- /* Ralf Brown 4/2/88 */
- /*================================================*/
-
- void pascal TVtask_start(OBJECT task)
- {
- _ES = OBJSEG(task) ;
- _AX = 0x101E ;
- geninterrupt(0x15) ;
- }
-
- /* End of TVTSTART.C */
-