; read keyboard
	mov	ah,8		; rd_kbd function call
	int	21h		; function call
	cmp	al,'q'		; is it quittin' time ?
	jnz	newcolor
	jmp	depart		; exit pgm if match
;
