Make read_memory debug output use ccdbg_debug.
[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
23 extern struct ccdbg *s51_dbg;
24
25 enum command_result {
26         command_proceed, command_debug, command_syntax, command_error
27 };
28
29 enum command_result
30 command_quit (FILE *output, int argc, char **argv);
31
32 enum command_result
33 command_help (FILE *output, int argc, char **argv);
34
35 enum command_result
36 command_di (FILE *output, int argc, char **argv);
37
38 enum command_result
39 command_ds (FILE *output, int argc, char **argv);
40
41 enum command_result
42 command_dx (FILE *output, int argc, char **argv);
43
44 enum command_result
45 command_set (FILE *output, int argc, char **argv);
46
47 enum command_result
48 command_dump (FILE *output, int argc, char **argv);
49
50 enum command_result
51 command_pc (FILE *output, int argc, char **argv);
52
53 enum command_result
54 command_break (FILE *output, int argc, char **argv);
55
56 enum command_result
57 command_clear (FILE *output, int argc, char **argv);
58
59 enum command_result
60 command_run (FILE *output, int argc, char **argv);
61
62 enum command_result
63 command_next (FILE *output, int argc, char **argv);
64
65 enum command_result
66 command_step (FILE *output, int argc, char **argv);
67
68 enum command_result
69 command_load (FILE *output, int argc, char **argv);
70
71 enum command_result
72 command_halt (FILE *output, int argc, char **argv);
73
74 enum command_result
75 command_reset (FILE *output, int argc, char **argv);
76
77 void
78 command_read (FILE *input, FILE *output);