summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-07-25 11:16:03 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-07-25 11:16:03 +0000
commit5a0cb68e43eacc98d275baef08296f154f3ae6dd (patch)
tree07e93ecd803fc76b2605d0610a5c19d584d13623 /firmware/SOURCES
parent9051afa8a061152941ed4cf99e0ceb9bc4a3caf1 (diff)
downloadrockbox-5a0cb68e43eacc98d275baef08296f154f3ae6dd.tar.gz
rockbox-5a0cb68e43eacc98d275baef08296f154f3ae6dd.zip
Moved some assembly optimizations to the target tree
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10318 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES22
1 files changed, 12 insertions, 10 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 7d93edaca1..2979e33ccc 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -30,7 +30,7 @@ common/strchr.c
30common/strcmp.c 30common/strcmp.c
31common/strcpy.c 31common/strcpy.c
32#if (CONFIG_CPU == SH7034) && !defined(SIMULATOR) 32#if (CONFIG_CPU == SH7034) && !defined(SIMULATOR)
33common/strlen_a.S 33target/sh/strlen-sh.S
34#else 34#else
35common/strlen.c 35common/strlen.c
36#endif 36#endif
@@ -39,22 +39,24 @@ common/strncpy.c
39common/strrchr.c 39common/strrchr.c
40common/strtok.c 40common/strtok.c
41common/timefuncs.c 41common/timefuncs.c
42#if (CONFIG_CPU == SH7034) || defined(CPU_COLDFIRE) 42
43common/memcpy_a.S 43#ifdef CPU_COLDFIRE
44common/memmove_a.S 44target/coldfire/memcpy-coldfire.S
45common/memset_a.S 45target/coldfire/memmove-coldfire.S
46target/coldfire/memset-coldfire.S
47target/coldfire/memset16-coldfire.S
48#elif (CONFIG_CPU == SH7034)
49target/sh/memcpy-sh.S
50target/sh/memmove-sh.S
51target/sh/memset-sh.S
46#elif defined(CPU_ARM) 52#elif defined(CPU_ARM)
47common/memcpy.c 53common/memcpy.c
48common/memmove.c 54common/memmove.c
49common/memset_a.S 55target/arm/memset-arm.S
50#else 56#else
51common/memcpy.c 57common/memcpy.c
52common/memmove.c 58common/memmove.c
53common/memset.c 59common/memset.c
54#endif
55#ifdef CPU_COLDFIRE
56common/memset16_a.S
57#else
58common/memset16.c 60common/memset16.c
59#endif 61#endif
60#ifdef HAVE_LCD_CHARCELLS 62#ifdef HAVE_LCD_CHARCELLS