Merge ccdbg and altos sources into one giant repository
[fw/altos] / s51 / s51.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
21 extern char *s51_prompt;
22 extern struct ccdbg *s51_dbg;
23 extern int s51_interrupted;
24 extern int s51_monitor;
25
26 enum command_result {
27         command_success, command_debug, command_syntax, command_interrupt, command_error,
28 };
29
30 struct command_function {
31         char                    *name;
32         char                    *alias;
33         enum command_result     (*func)(int argc, char **argv);
34         char                    *usage;
35         char                    *help;
36 };
37
38 struct command_function *
39 command_string_to_function(struct command_function *functions, char *name);
40
41 enum command_result
42 command_function_help(struct command_function *functions, int argc, char **argv);
43
44 void
45 command_syntax_error(int argc, char **argv);
46
47 enum command_result
48 command_quit (int argc, char **argv);
49
50 enum command_result
51 command_help (int argc, char **argv);
52
53 enum command_result
54 command_stop (int argc, char **argv);
55
56 enum command_result
57 command_di (int argc, char **argv);
58
59 enum command_result
60 command_ds (int argc, char **argv);
61
62 enum command_result
63 command_dx (int argc, char **argv);
64
65 enum command_result
66 command_set (int argc, char **argv);
67
68 enum command_result
69 command_dump (int argc, char **argv);
70
71 enum command_result
72 command_file (int argc, char **argv);
73
74 enum command_result
75 command_pc (int argc, char **argv);
76
77 enum command_result
78 command_break (int argc, char **argv);
79
80 enum command_result
81 command_clear (int argc, char **argv);
82
83 enum command_result
84 command_run (int argc, char **argv);
85
86 enum command_result
87 command_next (int argc, char **argv);
88
89 enum command_result
90 command_step (int argc, char **argv);
91
92 enum command_result
93 command_load (int argc, char **argv);
94
95 enum command_result
96 command_halt (int argc, char **argv);
97
98 enum command_result
99 command_reset (int argc, char **argv);
100
101 enum command_result
102 command_status (int argc, char **argv);
103
104 enum command_result
105 command_info (int argc, char **argv);
106
107 enum command_result
108 cc_wait(void);
109
110 void
111 command_read (void);
112
113 void
114 s51_printf(char *format, ...);
115
116 void
117 s51_putc(int c);
118
119 int
120 s51_check_input(void);
121
122 int
123 s51_read_line(char *line, int len);