File: cpu_types.html

package info (click to toggle)
cc1111 2.9.0-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 38,692 kB
  • ctags: 132,262
  • sloc: ansic: 442,650; cpp: 37,006; sh: 10,334; makefile: 5,511; asm: 5,279; yacc: 2,953; lisp: 1,524; perl: 807; awk: 493; python: 468; lex: 447
file content (210 lines) | stat: -rw-r--r-- 3,222 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<html>
<head>
<title>&micro;Csim: CPU types</title>
</head>

<body bgcolor="white">

<h1>Select type of CPU</h1>

The simulator supports following type of microprocessors from MCS51
family:

<p><a href="#51">8051/8031</a>

<br><a href="#52">8052/8032</a>

<br><a href="#ds390">DS390</a>

<br><a href="#51r">8051R</a>

<br><a href="#89c51r">89C51R</a>

<br><a href="#251">80251</a>


<a name="51"><h3>8051/8031</h3></a>

You can select this type of microcontroller using one of the following
parameter for -t option:

<ul><li>51 (HMOS type)

<li>8051 (HMOS type)

<li>8751 (HMOS type)

<li>C51 (CMOS type)

<li>80C51 (CMOS type)

<li>87C51 (CMOS type)

<li>31 (HMOS type)

<li>8031 (HMOS type)

<li>C31 (CMOS type)

<li>80C31 (CMOS type)

</ul>

It includes core 51 features:

<ul><li>64k external RAM

<li>64k ROM

<li>128 byte internal RAM

<li>2 timers (timer #0, timer #1)

<li>Serial interface

<li>4 8-bit quazi bi-directional ports

</ul>

CMOS types also include:

<ul><li>Idle mode

<li>Power down mode

</ul>


<a name="52"><h3>8052/8032</h3></a>

You can select this type of microcontroller using one of the following
parameter for -t option:

<ul><li>52 (HMOS type)

<li>8052 (HMOS type)

<li>8752 (HMOS type)

<li>C52 (CMOS type)

<li>80C52 (CMOS type)

<li>87C52 (CMOS type)

<li>32 (HMOS type)

<li>8032 (HMOS type)

<li>C32 (CMOS type)

<li>80C32 (CMOS type)

</ul>

It includes same features as <a href="#51">8051/8031</a>
microcontrollers and additionaly:

<ul><li>3 timers (timer #0, timer #1, timer #2)

<li>256 bytes of internal RAM

</ul>


<a name="ds390"><h3>DS390</h3></a>

You can select this type of microcontroller using <b>DS390</b> as
parameter for -t option (this is a CMOS type).

It includes same features as <a href="#52">8052</a> and adds:

<ul><li>24 bit flat mode

<li>support for dual DPTR register

<li>128k external RAM

<li>128k ROM

<li>4k internal SRAM usable

<li>10 bit stack mode

<li>"timed access" of SFRs

</ul>


<a name="51r"><h3>8051R</h3></a>

You can select this type of microcontroller using one of the following
parameter for -t option (all are CMOS types):

<ul><li>51R

<li>51RA

<li>51RB

<li>51RC

<li>C51RA

<li>C51RB

<li>C51RC

</ul>

It includes all features that <a href="#52">8052/8032</a> does and
additionaly:

<ul><li>Extended interrupt priority system (4 priority levels)

<li>Extended serial line interface (automatic address recognition)

<li>Watchdog timer

</ul>


<a name="89c51r"><h3>89C51R</h3></a>

You can select this type of microcontroller using <tt>89C51R</tt>
parameter for -t option (this CPU is always CMOS). This is a Philips
clone, excluding duplicated DPTR it is similar to 8051XR from Intel.

<p>It includes all features that <a href="#51r">8051R</a> does and
additionaly:

<ul><li>PCA (Programmable Counter Array): 5 16-bit counter, one of
them can act as watchdog timer.

<li>Duplicated DPTR.

</ul>


<a name="251"><h3>80251</h3></a>

You can select this type of microcontroller using one of the following
parameter for -t option (all are CMOS types):

<ul><li>251

<li>C251

</ul>

<p>It includes all features that <a href="#89c51r">89C51R</a> does
and additionaly:

<ul><li>Nothing implemented yet.

</ul>

<hr>

</body>
</html>