1b26482bb462446666eae6fa3f68310fccbddacd
[fw/sdcc] / sim / ucsim / sim.src / appcl.h
1 /*
2  * Simulator of microcontrollers (sim.src/appcl.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 SIM_APPCL_HEADER
29 #define SIM_APPCL_HEADER
30
31 #include "ddconfig.h"
32
33 // prj
34 #include "pobjcl.h"
35
36 // local, sim.src
37 #include "argcl.h"
38 #include "simcl.h"
39
40
41 /* Options */
42
43 #define OPT_GENERAL     0x0001
44 #define OPT_SIM         0x0002
45 #define OPT_UC          0x0004
46 #define OPT_PRG_OPT     (OPT_GENERAL|OPT_SIM|OPT_UC)
47 #define OPT_51          0x0010
48 #define OPT_AVR         0x0020
49 #define OPT_Z80         0x0040
50 #define OPT_TARGET      (OPT_51|OPT_AVR|OPT_Z80)
51
52 /*class cl_option: public cl_base
53 {
54 public:
55   int type;     // See OPT_XXX
56   char short_name;
57   char *long_name;
58   class cl_ustrings *values;
59
60 public:
61   cl_option(int atype, char sn, char *ln);
62   virtual ~cl_option(void);
63
64   virtual int add_value(char *value);
65   virtual char *get_value(int index);
66 };
67
68 class cl_options: public cl_list
69 {
70 public:
71   cl_options(void);
72 };*/
73
74
75 /* Application */
76
77 class cl_app: public cl_base
78 {
79 protected:
80   class cl_commander *commander;
81 public:
82   class cl_sim *sim;
83   class cl_ustrings *in_files;
84   class cl_arguments *args;
85   int going;
86
87 public:
88   cl_app(void);
89   virtual ~cl_app(void);
90
91 public:
92   virtual int init(int argc , char *argv[]);
93   virtual int run(void);
94   virtual void done(void);
95
96 protected:
97   virtual int proc_arguments(int argc, char *argv[]);
98
99 public:
100   class cl_sim *get_sim(void) { return(sim); }
101   class cl_commander *get_commander(void) { return(commander); }
102   virtual class cl_cmd *get_cmd(class cl_cmdline *cmdline);
103
104 public: // messages to broadcast
105   virtual void mem_cell_changed(class cl_mem *mem, t_addr addr);
106
107 public:
108   virtual void set_simulator(class cl_sim *simulator);
109   virtual void remove_simulator(void);
110
111 protected:
112   virtual void build_cmdset(class cl_cmdset *cs);
113 };
114
115
116 #endif
117
118 /* End of sim.src/appcl.h */