a264f6ab8b6029c6ffd0dd8d042dea6441956f47
[fw/sdcc] / sim / ucsim / stypes.h
1 /*
2  * Simulator of microcontrollers (stypes.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 STYPES_HEADER
29 #define STYPES_HEADER
30
31 #include "ddconfig.h"
32
33
34 typedef unsigned char uchar;
35 typedef unsigned int  uint;
36 typedef unsigned long ulong;
37 typedef TYPE_UDWORD t_addr;     /* 32 bit max */
38 typedef TYPE_UWORD  t_mem;      /* 16 bit max */
39 typedef TYPE_WORD   t_smem;     /* signed 16 bit memory */
40
41 struct id_element
42 {
43   int id;
44   char *id_string;
45 };
46
47 // table of dissassembled instructions
48 struct dis_entry
49 {
50   uint  code, mask;
51   char  branch;
52   uchar length;
53   char  *mnemonic;
54 };
55
56 // table entry of SFR and BIT names
57 struct name_entry
58 {
59   int  cpu_type;
60   uint addr;
61   char *name;
62 };
63
64
65 struct cpu_entry
66 {
67   char *type_str;
68   int  type;
69   int  technology;
70 };
71
72 #define CPU_51          0x0001
73 #define CPU_31          0x0002
74 #define CPU_52          0x0004
75 #define CPU_32          0x0008
76 #define CPU_51R         0x0010
77 #define CPU_89C51R      0x0020
78 #define CPU_251         0x0040
79 #define CPU_DS390       0x0080
80 #define CPU_DS390F      0x0100
81 #define CPU_ALL_51      (CPU_51|CPU_31)
82 #define CPU_ALL_52      (CPU_52|CPU_32|CPU_51R|CPU_89C51R|CPU_251|CPU_DS390|CPU_DS390F)
83
84 #define CPU_AVR         0x0001
85 #define CPU_ALL_AVR     (CPU_AVR)
86
87 #define CPU_Z80         0x0001
88 #define CPU_ALL_Z80     (CPU_Z80)
89
90 #define CPU_XA          0x0001
91 #define CPU_ALL_XA      (CPU_XA)
92
93 #define CPU_HC08        0x0001
94 #define CPU_ALL_HC08    (CPU_HC08)
95
96 #define CPU_CMOS        0x0001
97 #define CPU_HMOS        0x0002
98
99 /* Classes of memories, this is index on the list */
100 enum mem_class
101 {
102   MEM_ROM= 0,
103   MEM_XRAM,
104   MEM_IRAM,
105   MEM_SFR,
106   MEM_DUMMY,
107   MEM_IXRAM,
108   MEM_TYPES
109 };
110
111 // States of simulator
112 #define SIM_NONE        0
113 #define SIM_GO          0x01    // Processor is running
114 #define SIM_QUIT        0x02    // Program must exit
115
116 /* States of CPU */
117 #define stGO            0       /* Normal state */
118 #define stIDLE          1       /* Idle mode is active */
119 #define stPD            2       /* Power Down mode is active */
120
121 /* Result of instruction simulation */
122 #define resGO           0       /* OK, go on */
123 #define resWDTRESET     1       /* Reseted by WDT */
124 #define resINTERRUPT    2       /* Interrupt accepted */
125 #define resSTOP         100     /* Stop if result greather then this */
126 #define resHALT         101     /* Serious error, halt CPU */
127 #define resINV_ADDR     102     /* Invalid indirect address */
128 #define resSTACK_OV     103     /* Stack overflow */
129 #define resBREAKPOINT   104     /* Breakpoint */
130 #define resUSER         105     /* Stopped by user */
131 #define resINV_INST     106     /* Invalid instruction */
132 #define resBITADDR      107     /* Bit address is uninterpretable */
133
134 #define BIT_MASK(bitaddr) (1 << (bitaddr & 0x07))
135
136 #define IRAM_SIZE 256     /* Size of Internal RAM */
137 #define SFR_SIZE  256     /* Size of SFR area */
138 #define SFR_START 128     /* Start address of SFR area */
139 #define ERAM_SIZE 256     /* Size of ERAM in 51R */
140 #define XRAM_SIZE 0x10000 /* Size of External RAM */
141 //#define IROM_SIZE 0x1000  /* Size of Internal ROM */
142 #define EROM_SIZE 0x10000 /* Size of External ROM */
143
144
145 /* Type of breakpoints */
146 enum brk_perm
147 {
148   brkFIX,       /* f */
149   brkDYNAMIC    /* d */
150 };
151
152 enum brk_type
153 {
154   brkFETCH,     /* f */
155   brkEVENT      /* e */
156 };
157
158 enum brk_event
159 {
160   brkNONE,
161   brkWXRAM,     /* wx */
162   brkRXRAM,     /* rx */
163   brkRCODE,     /* rc */
164   brkWIRAM,     /* wi */
165   brkRIRAM,     /* ri */
166   brkWSFR,      /* ws */
167   brkRSFR,      /* rs */
168   brkREAD,
169   brkWRITE,
170   brkACCESS
171 };
172
173 //struct event_rec
174 //{
175 //  t_addr wx; /* write to XRAM at this address, else -1 */
176 //  t_addr rx; /* read from XRAM at this address, else -1 */
177 //  t_addr wi; /* write to IRAM at this address, else -1 */
178 //  t_addr ri; /* read from IRAM at this address, else -1 */
179 //  t_addr ws; /* write to SFR at this address, else -1 */
180 //  t_addr rs; /* read from SFR at this address, else -1 */
181 //  t_addr rc; /* read from ROM at this address, else -1 */
182 //};
183
184 /* Interrupt levels */
185 //#define IT_NO         -1 /* not in interroupt service */
186 #define IT_LOW          1 /* low level interrupt service */
187 #define IT_HIGH         2 /* service of high priority interrupt */
188
189 /* cathegories of hw elements (peripherials) */
190 enum hw_cath {
191   HW_DUMMY      = 0x0000,
192   HW_TIMER      = 0x0002,
193   HW_UART       = 0x0004,
194   HW_PORT       = 0x0008,
195   HW_PCA        = 0x0010,
196   HW_INTERRUPT  = 0x0020,
197   HW_WDT        = 0x0040
198 };
199
200 // Events that can happen in peripherals
201 enum hw_event {
202   EV_OVERFLOW,
203   EV_PORT_CHANGED,
204   EV_T2_MODE_CHANGED
205 };
206
207 // flags of hw units
208 #define HWF_NONE        0
209 #define HWF_INSIDE      0x0001
210 #define HWF_OUTSIDE     0x0002
211 #define HWF_MISC        0x0004
212
213
214 #endif
215
216 /* End of stypes.h */