1BSD/px/03bool.s

Compare this file to the similar file:
Show the results in this format:

/
/ BOOLEAN OPERATIONS
/
_AND:
	tst	(sp)+
	bne	1f
	clr	(sp)
1:
	return
_OR:
	bis	(sp)+,(sp)
	return
_NOT:
	inc	(sp)
	bic	$!1,(sp)
	return