	.title	bcopy	MicroEmacs access to movc3
;
;	Mic Kaczmarczik
;	July 11, 1986
;
;	This code implements the bcopy() function for quick
;	memory copies in VAX C.
;
	.entry	bcopy,^m<r2,r3,r4,r5>	; MOVC3 side-effects r0-r5
	subl2	#4,sp			; Step over call frame
	movc3	12(ap),@4(ap),@8(ap)	; Copy them bytes
	ret				; Bye!
	.end
