use multimaint-merge to make Debian changelogs less ugly
[fw/altos] / ao-tools / ao-dbg / ao-dbg.h
1 /*
2  * Copyright © 2008 Keith Packard <keithp@keithp.com>
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, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <ccdbg.h>
20 #include <cc.h>
21
22 extern char *s51_prompt;
23 extern struct ccdbg *s51_dbg;
24 extern int s51_interrupted;
25 extern int s51_monitor;
26 extern char *s51_tty;
27 extern char *s51_device;
28
29 enum command_result {
30         command_success, command_debug, command_syntax, command_interrupt, command_error,
31 };
32
33 struct command_function {
34         char                    *name;
35         char                    *alias;
36         enum command_result     (*func)(int argc, char **argv);
37         char                    *usage;
38         char                    *help;
39 };
40
41 struct command_function *
42 command_string_to_function(struct command_function *functions, char *name);
43
44 enum command_result
45 command_function_help(struct command_function *functions, int argc, char **argv);
46
47 void
48 command_syntax_error(int argc, char **argv);
49
50 enum command_result
51 command_quit (int argc, char **argv);
52
53 enum command_result
54 command_help (int argc, char **argv);
55
56 enum command_result
57 command_stop (int argc, char **argv);
58
59 enum command_result
60 command_di (int argc, char **argv);
61
62 enum command_result
63 command_ds (int argc, char **argv);
64
65 enum command_result
66 command_dx (int argc, char **argv);
67
68 enum command_result
69 command_set (int argc, char **argv);
70
71 enum command_result
72 command_dump (int argc, char **argv);
73
74 enum command_result
75 command_file (int argc, char **argv);
76
77 enum command_result
78 command_pc (int argc, char **argv);
79
80 enum command_result
81 command_break (int argc, char **argv);
82
83 enum command_result
84 command_clear (int argc, char **argv);
85
86 enum command_result
87 command_run (int argc, char **argv);
88
89 enum command_result
90 command_next (int argc, char **argv);
91
92 enum command_result
93 command_step (int argc, char **argv);
94
95 enum command_result
96 command_load (int argc, char **argv);
97
98 enum command_result
99 command_halt (int argc, char **argv);
100
101 enum command_result
102 command_reset (int argc, char **argv);
103
104 enum command_result
105 command_status (int argc, char **argv);
106
107 enum command_result
108 command_info (int argc, char **argv);
109
110 enum command_result
111 cc_wait(void);
112
113 void
114 command_read (void);
115
116 void
117 s51_printf(char *format, ...);
118
119 void
120 s51_putc(int c);
121
122 int
123 s51_check_input(void);
124
125 int
126 s51_read_line(char *line, int len);