a061b3a311e6d0c07de6704fff515bc8637ae04c
[fw/sdcc] / sim / ucsim / errorcl.h
1 /*
2  * Simulator of microcontrollers (errorcl.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 /*
11   This file is part of microcontroller simulator: ucsim.
12
13   UCSIM is free software; you can redistribute it and/or modify
14   it under the terms of the GNU General Public License as published by
15   the Free Software Foundation; either version 2 of the License, or
16   (at your option) any later version.
17
18   UCSIM is distributed in the hope that it will be useful,
19   but WITHOUT ANY WARRANTY; without even the implied warranty of
20   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21   GNU General Public License for more details.
22
23   You should have received a copy of the GNU General Public License
24   along with UCSIM; see the file COPYING.  If not, write to the Free
25   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26   02111-1307, USA.
27 */
28 /*@1@*/
29
30 #ifndef ERRORCL_HEADER
31 #define ERRORCL_HEADER
32
33 // prj
34 #include "pobjcl.h"
35 #include "stypes.h"
36
37 extern struct id_element error_on_off_names[];
38
39 enum error_on_off {
40   ERROR_PARENT,
41   ERROR_ON,
42   ERROR_OFF
43 };
44
45 const int err_stop= (err_unknown|err_error);
46
47 extern class cl_list *registered_errors;
48
49 class cl_error_class: public cl_base
50 {
51 protected:
52   enum error_type type;
53   //char *name;
54   enum error_on_off on;
55 public:
56   cl_error_class(enum error_type typ, char *aname,
57                  enum error_on_off be_on= ERROR_PARENT);
58   cl_error_class(enum error_type typ, char *aname,
59                  class cl_error_class *parent,
60                  enum error_on_off be_on= ERROR_PARENT);
61   
62   enum error_on_off get_on(void) { return(on); }
63   void set_on(enum error_on_off val);
64   bool is_on(void);
65   enum error_type get_type(void);
66   char *get_type_name(void);
67   //char *get_name(void);
68 };
69
70 class cl_commander; //forward
71
72 class cl_error: public cl_base
73 {
74 private:
75   static class cl_error_class *error_class_base;
76 protected:
77   class cl_error_class *classification;
78 public:
79   bool inst;    // Occured during instruction execution
80   t_addr PC;    // Address of the instruction
81 public:
82   cl_error(void);
83   virtual ~cl_error(void);
84   virtual int init(void);
85
86 public:
87   virtual enum error_type get_type(void);
88   virtual enum error_on_off get_on(void);
89   virtual bool is_on(void);
90   virtual class cl_error_class *get_class(void) { return(classification); }
91
92   virtual void print(class cl_commander *c);
93   virtual char *get_type_name();
94 };
95
96
97 #endif
98
99 /* End of sim.src/errorcl.h */