summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2009-10-10 13:23:07 +0000
committerDave Chapman <dave@dchapman.com>2009-10-10 13:23:07 +0000
commit4ff7666388b58fe06e8de28eb55f54d9bb7afb34 (patch)
tree0150a53f339c7319c78f522658a3e89bdfb63028 /apps
parent4fe2ee02215730c2217135ef1e6dd4585a0c2439 (diff)
downloadrockbox-4ff7666388b58fe06e8de28eb55f54d9bb7afb34.tar.gz
rockbox-4ff7666388b58fe06e8de28eb55f54d9bb7afb34.zip
Implement __dbg_ports for S5L870X targets (Nano2G and Meizus)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23069 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 6307a50283..5d79bd1288 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -103,7 +103,8 @@
103#include "appevents.h" 103#include "appevents.h"
104 104
105#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \ 105#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \
106 || CONFIG_CPU == IMX31L || CONFIG_CPU == AS3525 || CONFIG_CPU == JZ4732 106 || CONFIG_CPU == IMX31L || CONFIG_CPU == AS3525 || CONFIG_CPU == JZ4732 \
107 || defined(CPU_S5L870X)
107#include "debug-target.h" 108#include "debug-target.h"
108#endif 109#endif
109 110
@@ -2705,7 +2706,7 @@ static const struct the_menu_item menuitems[] = {
2705#endif 2706#endif
2706#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) || defined(CPU_PP) \ 2707#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) || defined(CPU_PP) \
2707 || CONFIG_CPU == S3C2440 || CONFIG_CPU == IMX31L || CONFIG_CPU == AS3525 \ 2708 || CONFIG_CPU == S3C2440 || CONFIG_CPU == IMX31L || CONFIG_CPU == AS3525 \
2708 || CONFIG_CPU == DM320 2709 || CONFIG_CPU == DM320 || defined(CPU_S5L870X)
2709 { "View I/O ports", dbg_ports }, 2710 { "View I/O ports", dbg_ports },
2710#endif 2711#endif
2711#if (CONFIG_RTC == RTC_PCF50605) && !defined(SIMULATOR) 2712#if (CONFIG_RTC == RTC_PCF50605) && !defined(SIMULATOR)