diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-02-06 16:00:58 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-02-06 16:00:58 +0000 |
| commit | d036e97d3816ac2bc0eefc57bc033bd5fbbbf0f9 (patch) | |
| tree | 604e32fcc0cf4ac745774987c5e052544bb25d36 /firmware/SOURCES | |
| parent | 93c15381c8fa25cd30d52d3660c6f909837683fe (diff) | |
| download | rockbox-d036e97d3816ac2bc0eefc57bc033bd5fbbbf0f9.zip rockbox-d036e97d3816ac2bc0eefc57bc033bd5fbbbf0f9.tar.gz rockbox-d036e97d3816ac2bc0eefc57bc033bd5fbbbf0f9.tar.bz2 rockbox-d036e97d3816ac2bc0eefc57bc033bd5fbbbf0f9.tar.xz | |
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
Diffstat (limited to 'firmware/SOURCES')
| -rw-r--r-- | firmware/SOURCES | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES index 4e32266..880d03a 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES @@ -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 |