mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-15 11:07:38 -04:00
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:
parent
93c15381c8
commit
d036e97d38
4 changed files with 1034 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue