home *** CD-ROM | disk | FTP | other *** search
- ; ***********
- ; * GUC.asm *
- ; *******************************************
- ; * Copyright TimeSlice, Inc. 1985, 86, 87. *
- ; *******************************************
- include ts.inc
- ;
- start_data
- end_data
- ;
- start_code
- ;
- extrn __gus:far
- ;
- ;***
- ;* GUC()
- ;* Give Up Control : the task calling guc is immediately preempted by the
- ;* switcher if it is awake.
- ;***
- routine guc
- pushf ;save flags
- cli ;hold timer interrupt
- mov ax,1
- mov _volguc,al ;set voluntary-give-up-control flag
- mov _timcnt,ax ;force process switching
- call __gus
- ; ;one popf done by iret after slicer
- return guc
- ;
- end_code
-
-
-