mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-17 12:01:53 +08:00
12 lines
215 B
ArmAsm
12 lines
215 B
ArmAsm
|
.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
|