/* Copyright 1984 by the Massachusetts Institute of Technology
 *
 * copy.s
 *
 * Calling sequence:
 *	copy( from, to, len)
 *	char	*from;			copy bytes from here
 *	char	*to;			to here
 *	int	len;			this many
 */

	.globl	_copy
.text
.align 2
_copy:	.word	0
	movc3	12(ap), *4(ap), *8(ap)
	ret
