128b66edaca22bdfefe069b0cf5218fb779b4a74
[fw/sdcc] / sim / ucsim / cmd.src / timercl.h
1 /*
2  * Simulator of microcontrollers (cmd.src/timercl.h)
3  *
4  * Copyright (C) 2001,01 Drotos Daniel, Talker Bt.
5  * 
6  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
7  *
8  */
9
10 /* This file is part of microcontroller simulator: ucsim.
11
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.
16
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.
21
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
25 02111-1307, USA. */
26 /*@1@*/
27
28 #ifndef CMD_TIMERCL_HEADER
29 #define CMD_TIMERCL_HEADER
30
31 #include "newcmdcl.h"
32
33
34 COMMAND_HEAD(cl_timer_cmd)
35 public:
36   class cl_ticker *ticker;
37   long what;
38 //char *name;
39 COMMAND_METHODS_ON(uc,cl_timer_cmd)
40   void set_ticker(class cl_uc *uc,
41                   class cl_cmd_arg *param);
42   virtual int add(class cl_uc *uc,
43                   class cl_cmdline *cmdline, class cl_console *con);
44   virtual int del(class cl_uc *uc,
45                   class cl_cmdline *cmdline, class cl_console *con);
46   virtual int get(class cl_uc *uc,
47                   class cl_cmdline *cmdline, class cl_console *con);
48   virtual int run(class cl_uc *uc,
49                   class cl_cmdline *cmdline, class cl_console *con);
50   virtual int stop(class cl_uc *uc,
51                    class cl_cmdline *cmdline, class cl_console *con);
52   virtual int val(class cl_uc *uc,
53                   class cl_cmdline *cmdline, class cl_console *con);
54 COMMAND_TAIL;
55
56
57 #endif
58
59 /* End of cmd.src/timercl.h */