X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftarget%2Ftarget.c;h=ebddbba823d2fca74574169ff33a6640f0caaa23;hb=fc99287b097e719a6dbe8d139e71c5ed136e48e8;hp=70130d9127d68fe59c7f3267066d410ea5501a22;hpb=f0da635e554704f96b676406f433739a196afacd;p=fw%2Fopenocd diff --git a/src/target/target.c b/src/target/target.c index 70130d912..ebddbba82 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -33,15 +33,16 @@ #include "config.h" #endif +#include +#include + #include "target.h" #include "target_type.h" #include "target_request.h" #include "breakpoints.h" -#include #include "register.h" #include "trace.h" #include "image.h" -#include static int target_array2mem(Jim_Interp *interp, struct target *target, int argc, Jim_Obj *const *argv); @@ -63,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[] = @@ -82,6 +84,7 @@ struct target_type *target_types[] = &arm11_target, &mips_m4k_target, &avr_target, + &dsp563xx_target, &testee_target, NULL, };