ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / s390 / lib / strcpy.S
1 /*
2  *  arch/s390/kernel/strcpy.S
3  *    S390 strcpy routine
4  *
5  *  S390 version
6  *    Copyright (C) 2004 IBM Deutschland Entwicklung GmbH, IBM Corporation
7  *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
8  */
9
10 /*
11  * R2 = address of destination
12  * R3 = address of source string
13  */
14         .globl   strcpy
15 strcpy:
16         sr      %r0,%r0
17 0:      mvst    %r2,%r3
18         jo      0b
19         br      %r14
20