summaryrefslogtreecommitdiff
path: root/src/target/target.c
diff options
context:
space:
mode:
authormkdorg@users.sourceforge.net <mkdorg@users.sourceforge.net>2009-12-15 18:30:59 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2009-12-15 18:38:52 +0100
commit646ce814b4fb678b7d8d341afe0694c266112426 (patch)
treef47236c7e4e51f5125635bd562ba153bafac8544 /src/target/target.c
parent4639366947427da6face9cb6954b6603eb2e2fd3 (diff)
downloadopenocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.gz
openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.bz2
openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.tar.xz
openocd+libswd-646ce814b4fb678b7d8d341afe0694c266112426.zip
target: add basic dsp563xx support
Diffstat (limited to 'src/target/target.c')
-rw-r--r--src/target/target.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 740db0f1..ebddbba8 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -64,6 +64,7 @@ extern struct target_type cortexa8_target;
extern struct target_type arm11_target;
extern struct target_type mips_m4k_target;
extern struct target_type avr_target;
+extern struct target_type dsp563xx_target;
extern struct target_type testee_target;
struct target_type *target_types[] =
@@ -83,6 +84,7 @@ struct target_type *target_types[] =
&arm11_target,
&mips_m4k_target,
&avr_target,
+ &dsp563xx_target,
&testee_target,
NULL,
};