f4a375bdd8e6bf805f07c27c9f841aa422649e8b
[fw/sdcc] / sim / ucsim / s51.src / serialcl.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 SERIALCL_HEADER
29 #define SERIALCL_HEADER
30
31 #include "stypes.h"
32 #include "pobjcl.h"
33 #include "uccl.h"
34
35 //#include "newcmdcl.h"
36
37
38 class cl_serial: public cl_hw
39 {
40 protected:
41   bool there_is_t2, t2_baud;
42   class cl_cell *sbuf, *pcon, *scon;
43   struct termios saved_attributes_in; // Attributes of serial interface
44   struct termios saved_attributes_out;
45   FILE *serial_in;      // Serial line input
46   FILE *serial_out;     // Serial line output
47   uchar s_in;           // Serial channel input reg
48   uchar s_out;          // Serial channel output reg
49   bool  s_sending;      // Transmitter is working
50   bool  s_receiving;    // Receiver is working
51   int   s_rec_bit;      // Bit counter of receiver
52   int   s_tr_bit;       // Bit counter of transmitter
53   int   s_rec_t1;       // T1 overflows for receiving
54   int   s_tr_t1;        // T1 overflows for sending
55   int   s_rec_tick;     // Machine cycles for receiving
56   int   s_tr_tick;      // Machine cycles for sending
57   uchar _mode;
58   uchar _bmREN;
59   uchar _bmSMOD;
60   uchar _bits;
61   uchar _divby;
62 public:
63   cl_serial(class cl_uc *auc);
64   virtual ~cl_serial(void);
65   virtual int init(void);
66
67   virtual void new_hw_added(class cl_hw *new_hw);
68   virtual void added_to_uc(void);
69   virtual t_mem read(class cl_cell *cell);
70   virtual void write(class cl_cell *cell, t_mem *val);
71
72   //virtual void mem_cell_changed(class cl_mem *mem, t_addr addr);
73
74   virtual int  serial_bit_cnt(void);
75   virtual void received(int c);
76
77   virtual int tick(int cycles);
78   virtual void reset(void);
79   virtual void happen(class cl_hw *where, enum hw_event he, void *params);
80
81   virtual void print_info(class cl_console *con);
82 };
83
84
85 #endif
86
87 /* End of s51.src/serialcl.h */