e1e4e3ddcf852e293b04b17918d91fb43355a314
[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 #include "pobjcl.h"
34
35
36 /* Options */
37
38 #define OPT_GENERAL     0x0001
39 #define OPT_SIM         0x0002
40 #define OPT_UC          0x0004
41 #define OPT_PRG_OPT     (OPT_GENERAL|OPT_SIM|OPT_UC)
42 #define OPT_51          0x0010
43 #define OPT_AVR         0x0020
44 #define OPT_Z80         0x0040
45 #define OPT_TARGET      (OPT_51|OPT_AVR|OPT_Z80)
46
47 class cl_option: public cl_base
48 {
49 public:
50   int type;     // See OPT_XXX
51   char short_name;
52   char *long_name;
53   class cl_ustrings *values;
54
55 public:
56   cl_option(int atype, char sn, char *ln);
57   ~cl_option(void);
58
59   virtual int add_value(char *value);
60   virtual char *get_value(int index);
61 };
62
63 class cl_options: public cl_list
64 {
65 public:
66   cl_options(void);
67 };
68
69
70 /* Application */
71
72 class cl_app: public cl_base
73 {
74 public:
75   class cl_options *options;
76
77 public:
78   cl_app(void);
79   ~cl_app(void);
80 };
81
82
83 #endif
84
85 /* End of sim.src/appcl.h */