	.TITLE STOP
	.IDENT /112183/

;	File:[22,310]STOP.MAC
;	Author: Jim Bostwick - 21-Nov-83
;	History: 
;
;

.REM |

Procedure Stop;External;

{*USER*
 Pascal-3 procedure to place calling task in STOPPED state. From this
state, task can only be resumed by MCR UNSTOP and USTP directives.

Directive status is avaiable in $DSW on return;
}
|

	.MCALL STOP$S

	PROC STOP
	BEGIN
	STOP$S
	ENDPR
	.END
