summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-01-21 22:43:02 +0000
committerJens Arnold <amiconn@rockbox.org>2005-01-21 22:43:02 +0000
commit0310f16005a1e98c441221bc0f0f7586d0b19763 (patch)
treec695e2baa4da1bc7fb9381568863e903020335e3 /firmware/SOURCES
parent948f0b849785b3e727be6584470d1bb32238ec6a (diff)
downloadrockbox-0310f16005a1e98c441221bc0f0f7586d0b19763.tar.gz
rockbox-0310f16005a1e98c441221bc0f0f7586d0b19763.zip
Revived C implementations of memcpy() and memset() for platforms without asm optimized versions (gmini), replacing the intermediate strings.c. Moved the asm optimized versions 'out of the way' for the implicit 'make' rules by renaming them to *_a.S (for assembler/alternative).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5628 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES12
1 files changed, 7 insertions, 5 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index e6c007c1d0..e08d986ec1 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -1,6 +1,3 @@
1#ifdef ARCHOS_GMINI120
2common/string.c
3#endif
4#ifdef IRIVER_H100 1#ifdef IRIVER_H100
5crt0.S 2crt0.S
6backlight.c 3backlight.c
@@ -30,6 +27,13 @@ common/strncpy.c
30common/strrchr.c 27common/strrchr.c
31common/strtok.c 28common/strtok.c
32common/timefuncs.c 29common/timefuncs.c
30#if (CONFIG_CPU == SH7034) || (CONFIG_CPU == MCF5249)
31common/memcpy_a.S
32common/memset_a.S
33#else
34common/memcpy.c
35common/memset.c
36#endif
33debug.c 37debug.c
34drivers/adc.c 38drivers/adc.c
35#ifdef HAVE_MMC 39#ifdef HAVE_MMC
@@ -81,8 +85,6 @@ system.c
81thread.c 85thread.c
82usb.c 86usb.c
83bitswap.S 87bitswap.S
84common/memcpy.S
85common/memset.S
86crt0.S 88crt0.S
87descramble.S 89descramble.S
88drivers/lcd.S 90drivers/lcd.S