Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strcpy.S « rx « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2dc1746404d4c15e29c4bb2a243d5fbf24364a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
	.file	"strcpy.S"

	.section .text
	.global  _strcpy
	.type	 _strcpy,@function
_strcpy:
	mov	r1, r4
	mov	#-1, r3		; Strictly speaking this is incorrect, but I doubt if anyone will ever know.
	smovu
	mov	r4, r1
	rts