Imported Upstream version 2.9.0
[debian/cc1111] / 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   class cl_address_space *sfr;
42   bool there_is_t2, t2_baud;
43   class cl_memory_cell *sbuf, *pcon, *scon;
44 #ifdef HAVE_TERMIOS_H
45   struct termios saved_attributes_in; // Attributes of serial interface
46   struct termios saved_attributes_out;
47 #endif
48   class cl_optref *serial_in_file_option;
49   class cl_optref *serial_out_file_option;
50   FILE *serial_in;      // Serial line input
51   FILE *serial_out;     // Serial line output
52   uchar s_in;           // Serial channel input reg
53   uchar s_out;          // Serial channel output reg
54   bool  s_sending;      // Transmitter is working
55   bool  s_receiving;    // Receiver is working
56   int   s_rec_bit;      // Bit counter of receiver
57   int   s_tr_bit;       // Bit counter of transmitter
58   int   s_rec_t1;       // T1 overflows for receiving
59   int   s_tr_t1;        // T1 overflows for sending
60   int   s_rec_tick;     // Machine cycles for receiving
61   int   s_tr_tick;      // Machine cycles for sending
62   uchar _mode;
63   uchar _bmREN;
64   uchar _bmSMOD;
65   uchar _bits;
66   uchar _divby;
67 public:
68   cl_serial(class cl_uc *auc);
69   virtual ~cl_serial(void);
70   virtual int init(void);
71
72   virtual void new_hw_added(class cl_hw *new_hw);
73   virtual void added_to_uc(void);
74   virtual t_mem read(class cl_memory_cell *cell);
75   virtual void write(class cl_memory_cell *cell, t_mem *val);
76
77   //virtual void mem_cell_changed(class cl_m *mem, t_addr addr);
78
79   virtual int  serial_bit_cnt(void);
80   virtual void received(int c);
81
82   virtual int tick(int cycles);
83   virtual void reset(void);
84   virtual void happen(class cl_hw *where, enum hw_event he, void *params);
85
86   virtual void print_info(class cl_console_base *con);
87 };
88
89
90 #endif
91
92 /* End of s51.src/serialcl.h */