1 /* MSPDebug - debugging tool for the eZ430
2  * Copyright (C) 2009, 2010 Daniel Beer
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 
19 #ifndef DEVCMD_H_
20 #define DEVCMD_H_
21 
22 int cmd_regs(char **arg);
23 int cmd_md(char **arg);
24 int cmd_mw(char **arg);
25 int cmd_reset(char **arg);
26 int cmd_erase(char **arg);
27 int cmd_step(char **arg);
28 int cmd_run(char **arg);
29 int cmd_set(char **arg);
30 int cmd_dis(char **arg);
31 int cmd_hexout(char **arg);
32 int cmd_prog(char **arg);
33 int cmd_load(char **arg);
34 int cmd_verify(char **arg);
35 int cmd_setbreak(char **arg);
36 int cmd_setwatch(char **arg);
37 int cmd_setwatch_r(char **arg);
38 int cmd_setwatch_w(char **arg);
39 int cmd_delbreak(char **arg);
40 int cmd_break(char **arg);
41 int cmd_fill(char **arg);
42 int cmd_blow_jtag_fuse(char **arg);
43 
44 #endif
45