2 * Simulator of microcontrollers (cmd.src/cmdsetcl.h)
4 * Copyright (C) 1999,99 Drotos Daniel, Talker Bt.
6 * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
10 /* This file is part of microcontroller simulator: ucsim.
12 UCSIM is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 UCSIM is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with UCSIM; see the file COPYING. If not, write to the Free
24 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
28 #ifndef CMD_CMDSETCL_HEADER
29 #define CMD_CMDSETCL_HEADER
32 #include "commandcl.h"
37 COMMAND_ON(sim,cl_run_cmd);
38 COMMAND_ON(sim,cl_stop_cmd);
39 COMMAND_ON(uc,cl_step_cmd);
40 COMMAND_ON(sim,cl_next_cmd);
42 //COMMAND_ON(app,cl_help_cmd);
43 COMMAND_HEAD(cl_help_cmd)
44 COMMAND_METHODS_ON(app,cl_help_cmd)
47 class cl_cmd *cmd_found;
48 bool do_set(class cl_cmdline *cmdline, int pari, class cl_cmdset *cmdset,
49 class cl_console *con);
53 COMMAND_ON(app,cl_kill_cmd);
54 COMMAND_ON(app,cl_exec_cmd);
55 COMMAND_ON(app,cl_expression_cmd);
60 /* End of cmd.src/cmdsetcl.h */