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