e0b0ca01c5b7021b83cf84d56e928428467b240c
[fw/sdcc] / sim / ucsim / s51.src / uc390hwcl.h
1 /*
2  * Simulator of microcontrollers (serialcl.h)
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 #ifndef UC390HWCL_HEADER
29 #define UC390HWCL_HEADER
30
31 #include "uccl.h"
32
33 #include "uc390cl.h"
34
35
36 class cl_uc390_hw: public cl_hw
37 {
38 protected:
39   class cl_cell *cell_dps, *cell_exif, *cell_p4cnt, *cell_acon,
40                 *cell_p5cnt, *cell_c0c, *cell_pmr, *cell_mcon,
41                 *cell_ta, *cell_cor, *cell_mcnt0, *cell_mcnt1,
42                 *cell_ma, *cell_mb, *cell_mc, *cell_wdcon, *cell_c1c;
43   class t_uc390 *uc390;
44   unsigned long ctm_ticks; /* mini-state-machine for "crystal multiplier" */
45   unsigned long timed_access_ticks;
46   int timed_access_state; /* 0: idle; 1: $aa written; 2: $55 written */
47 public:
48   cl_uc390_hw (class cl_uc *auc);
49   virtual int init (void);
50
51   virtual t_mem read (class cl_cell *cell);
52   virtual void write (class cl_cell *cell, t_mem *val);
53
54   //virtual void mem_cell_changed (class cl_mem *mem, t_addr addr);
55
56   virtual void reset (void);
57   virtual void print_info (class cl_console *con);
58 };
59
60
61 #endif
62
63 /* End of s51.src/serialcl.h */