1
0
Fork 0
forked from len0rd/rockbox

Added memmove() to the rockbox core. C implementation taken from newlib. Fully optimised ASM implementations for SH1 and coldfire, reusing the AMS memcpy code path for forward copying.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8601 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-02-06 16:00:58 +00:00
parent 93c15381c8
commit d036e97d38
4 changed files with 1034 additions and 10 deletions

View file

@ -38,9 +38,11 @@ common/strtok.c
common/timefuncs.c
#if (CONFIG_CPU == SH7034) || defined(CPU_COLDFIRE)
common/memcpy_a.S
common/memmove_a.S
common/memset_a.S
#else
common/memcpy.c
common/memmove.c
common/memset.c
#endif
#ifdef HAVE_LCD_CHARCELLS