summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
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