2 * C library strcpy routine
4 * This routine has been optimized for the CPU32+.
5 * It should run on all 68k machines.
8 * Saskatchewan Accelerator Laboratory
9 * University of Saskatchewan
10 * Saskatoon, Saskatchewan, CANADA
11 * eric@skatter.usask.ca
17 * Copy bytes using CPU32+ loop mode if possible
21 strcpy (char *to
, const char *from
)
24 unsigned int n
= 0xFFFF;
27 "\tmove.b (%0)+,(%1)+\n"
28 #if defined(__mcpu32__)
32 "=a" (from
), "=a" (pto
), "=d" (n
) :
33 "0" (from
), "1" (pto
), "2" (n
) :