
:	TNIX/Unix Version
:	Keyshell Version Number 1	*/

: This shell script queries the user as to the inclusion of the Tektronix
: uP assembler in a custom ColorKey+ script.
: Called from kshoptions which is called from build which is called by
: setksh.

looptest=0
while test $looptest
do
echo
echo -n "Do you wish to use a Tektronix assembler ('y' or 'n')?: "
read INPUT
case $INPUT in
'y' | 'Y')
	looptest=
	echo "#define _asm 1" >>$kppdefs
	echo " o  The $micro assembler and related utilities are included." \
		>>$kshconfig
	;;
'n' | 'N')
	looptest=
	echo " o  The assembler functions are not included." >>$kshconfig
	;;
	*)	echo "Invalid input: Please enter 'y' or 'n'";;
esac
done


