0.2.38-pre1 implements AVR instructions
[fw/sdcc] / sim / ucsim / cmd.src / set.cc
1 /*
2  * Simulator of microcontrollers (cmd.src/set.cc)
3  *
4  * Copyright (C) 1999,99 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 #include "ddconfig.h"
29
30 // sim
31 #include "simcl.h"
32
33 // local
34 #include "cmdsetcl.h"
35
36
37 /*
38  * SET TIMER
39  */
40
41 int
42 cl_set_cmd::timer(class cl_cmdline *cmdline, class cl_console *con)
43 {
44   class cl_cmd_arg *params[4]= { cmdline->param(0),
45                                  cmdline->param(1),
46                                  cmdline->param(2),
47                                  cmdline->param(3) };
48   int what, dir;
49   class cl_ticker *ticker;
50   
51   if (params[1] == 0)
52     {
53       con->printf("Timer number is missing\n");
54       return(0);
55     }
56   what= (params[1])->get_ivalue();
57   if ((ticker= sim->uc->get_counter(what)) != 0)
58     {
59       con->printf("Timer %d already exists\n", what);
60       return(0);
61     }
62   if (params[2] != 0)
63     dir= (params[2])->get_ivalue();
64   else
65     dir= 1;
66   ticker= new cl_ticker(dir, 0, 0);
67   sim->uc->add_counter(ticker, what);
68
69   return(0);
70 }
71
72
73 /* End of cmd.src/set.cc */