f20a564a67fbf594b9352195427d33f45b1bc039
[fw/sdcc] / device / include / pic / pic16c620.h
1 //
2 // Register Declarations for Microchip 16C620 Processor
3 //
4 //
5 // This header file was automatically generated by:
6 //
7 //      inc2h.pl V4585
8 //
9 //      Copyright (c) 2002, Kevin L. Pauba, All Rights Reserved
10 //
11 //      SDCC is licensed under the GNU Public license (GPL) v2.  Note that
12 //      this license covers the code to the compiler and other executables,
13 //      but explicitly does not cover any code or objects generated by sdcc.
14 //      We have not yet decided on a license for the run time libraries, but
15 //      it will not put any requirements on code linked against it. See:
16 // 
17 //      http://www.gnu.org/copyleft/gpl/html
18 //
19 //      See http://sdcc.sourceforge.net/ for the latest information on sdcc.
20 //
21 // 
22 #ifndef P16C620_H
23 #define P16C620_H
24
25 //
26 // Register addresses.
27 //
28 #define INDF_ADDR       0x0000
29 #define TMR0_ADDR       0x0001
30 #define PCL_ADDR        0x0002
31 #define STATUS_ADDR     0x0003
32 #define FSR_ADDR        0x0004
33 #define PORTA_ADDR      0x0005
34 #define PORTB_ADDR      0x0006
35 #define PCLATH_ADDR     0x000A
36 #define INTCON_ADDR     0x000B
37 #define PIR1_ADDR       0x000C
38 #define CMCON_ADDR      0x001F
39 #define OPTION_REG_ADDR 0x0081
40 #define TRISA_ADDR      0x0085
41 #define TRISB_ADDR      0x0086
42 #define PIE1_ADDR       0x008C
43 #define PCON_ADDR       0x008E
44 #define VRCON_ADDR      0x009F
45
46 //
47 // Memory organization.
48 //
49
50
51
52 //         LIST
53 // P16C620.INC  Standard Header File, Version 1.01    Microchip Technology, Inc.
54 //         NOLIST
55
56 // This header file defines configurations, registers, and other useful bits of
57 // information for the PIC16C620 microcontroller.  These names are taken to match 
58 // the data sheets as closely as possible.  
59
60 // Note that the processor must be selected before this file is 
61 // included.  The processor may be selected the following ways:
62
63 //       1. Command line switch:
64 //               C:\ MPASM MYFILE.ASM /PIC16C620
65 //       2. LIST directive in the source file
66 //               LIST   P=PIC16C620
67 //       3. Processor Type entry in the MPASM full-screen interface
68
69 //==========================================================================
70 //
71 //       Revision History
72 //
73 //==========================================================================
74
75 //Rev:   Date:    Reason:
76
77 //1.01   11/28/95 Added NOT_BOR to match revised datasheet
78 //1.00   10/31/95 Initial Release
79
80 //==========================================================================
81 //
82 //       Verify Processor
83 //
84 //==========================================================================
85
86 //        IFNDEF __16C620
87 //            MESSG "Processor-header file mismatch.  Verify selected processor."
88 //         ENDIF
89
90 //==========================================================================
91 //
92 //       Register Definitions
93 //
94 //==========================================================================
95
96 #define W                    0x0000
97 #define F                    0x0001
98
99 //----- Register Files------------------------------------------------------
100
101 extern __sfr  __at (INDF_ADDR)                    INDF;
102 extern __sfr  __at (TMR0_ADDR)                    TMR0;
103 extern __sfr  __at (PCL_ADDR)                     PCL;
104 extern __sfr  __at (STATUS_ADDR)                  STATUS;
105 extern __sfr  __at (FSR_ADDR)                     FSR;
106 extern __sfr  __at (PORTA_ADDR)                   PORTA;
107 extern __sfr  __at (PORTB_ADDR)                   PORTB;
108 extern __sfr  __at (PCLATH_ADDR)                  PCLATH;
109 extern __sfr  __at (INTCON_ADDR)                  INTCON;
110 extern __sfr  __at (PIR1_ADDR)                    PIR1;
111 extern __sfr  __at (CMCON_ADDR)                   CMCON;
112
113 extern __sfr  __at (OPTION_REG_ADDR)              OPTION_REG;
114 extern __sfr  __at (TRISA_ADDR)                   TRISA;
115 extern __sfr  __at (TRISB_ADDR)                   TRISB;
116 extern __sfr  __at (PIE1_ADDR)                    PIE1;
117 extern __sfr  __at (PCON_ADDR)                    PCON;
118 extern __sfr  __at (VRCON_ADDR)                   VRCON;
119
120 //----- STATUS Bits --------------------------------------------------------
121
122
123 //----- INTCON Bits --------------------------------------------------------
124
125
126 //----- PIR1 Bits ----------------------------------------------------------
127
128
129 //----- CMCON Bits ---------------------------------------------------------
130
131
132 //----- OPTION Bits --------------------------------------------------------
133
134
135 //----- PIE1 Bits ----------------------------------------------------------
136
137
138 //----- PCON Bits ----------------------------------------------------------
139
140
141 //----- VRCON Bits ---------------------------------------------------------
142
143
144 //==========================================================================
145 //
146 //       RAM Definition
147 //
148 //==========================================================================
149
150 //         __MAXRAM H'09F'
151 //         __BADRAM H'07'-H'09', H'0D'-H'1E', H'70'-H'7F'
152 //         __BADRAM H'87'-H'89', H'8D', H'8F'-H'9E'
153
154 //==========================================================================
155 //
156 //       Configuration Bits
157 //
158 //==========================================================================
159
160 #define _BODEN_ON            0x3FFF
161 #define _BODEN_OFF           0x3FBF
162 #define _CP_ON               0x00CF
163 #define _CP_OFF              0x3FFF
164 #define _PWRTE_OFF           0x3FFF
165 #define _PWRTE_ON            0x3FF7
166 #define _WDT_ON              0x3FFF
167 #define _WDT_OFF             0x3FFB
168 #define _LP_OSC              0x3FFC
169 #define _XT_OSC              0x3FFD
170 #define _HS_OSC              0x3FFE
171 #define _RC_OSC              0x3FFF
172
173 //         LIST
174
175 // ----- CMCON bits --------------------
176 typedef union {
177   struct {
178     unsigned char CM0:1;
179     unsigned char CM1:1;
180     unsigned char CM2:1;
181     unsigned char CIS:1;
182     unsigned char :1;
183     unsigned char :1;
184     unsigned char C1OUT:1;
185     unsigned char C2OUT:1;
186   };
187 } __CMCON_bits_t;
188 extern volatile __CMCON_bits_t __at(CMCON_ADDR) CMCON_bits;
189
190 #define CM0                  CMCON_bits.CM0
191 #define CM1                  CMCON_bits.CM1
192 #define CM2                  CMCON_bits.CM2
193 #define CIS                  CMCON_bits.CIS
194 #define C1OUT                CMCON_bits.C1OUT
195 #define C2OUT                CMCON_bits.C2OUT
196
197 // ----- INTCON bits --------------------
198 typedef union {
199   struct {
200     unsigned char RBIF:1;
201     unsigned char INTF:1;
202     unsigned char T0IF:1;
203     unsigned char RBIE:1;
204     unsigned char INTE:1;
205     unsigned char T0IE:1;
206     unsigned char PEIE:1;
207     unsigned char GIE:1;
208   };
209 } __INTCON_bits_t;
210 extern volatile __INTCON_bits_t __at(INTCON_ADDR) INTCON_bits;
211
212 #define RBIF                 INTCON_bits.RBIF
213 #define INTF                 INTCON_bits.INTF
214 #define T0IF                 INTCON_bits.T0IF
215 #define RBIE                 INTCON_bits.RBIE
216 #define INTE                 INTCON_bits.INTE
217 #define T0IE                 INTCON_bits.T0IE
218 #define PEIE                 INTCON_bits.PEIE
219 #define GIE                  INTCON_bits.GIE
220
221 // ----- OPTION_REG bits --------------------
222 typedef union {
223   struct {
224     unsigned char PS0:1;
225     unsigned char PS1:1;
226     unsigned char PS2:1;
227     unsigned char PSA:1;
228     unsigned char T0SE:1;
229     unsigned char T0CS:1;
230     unsigned char INTEDG:1;
231     unsigned char NOT_RBPU:1;
232   };
233 } __OPTION_REG_bits_t;
234 extern volatile __OPTION_REG_bits_t __at(OPTION_REG_ADDR) OPTION_REG_bits;
235
236 #define PS0                  OPTION_REG_bits.PS0
237 #define PS1                  OPTION_REG_bits.PS1
238 #define PS2                  OPTION_REG_bits.PS2
239 #define PSA                  OPTION_REG_bits.PSA
240 #define T0SE                 OPTION_REG_bits.T0SE
241 #define T0CS                 OPTION_REG_bits.T0CS
242 #define INTEDG               OPTION_REG_bits.INTEDG
243 #define NOT_RBPU             OPTION_REG_bits.NOT_RBPU
244
245 // ----- PCON bits --------------------
246 typedef union {
247   struct {
248     unsigned char NOT_BO:1;
249     unsigned char NOT_POR:1;
250     unsigned char :1;
251     unsigned char :1;
252     unsigned char :1;
253     unsigned char :1;
254     unsigned char :1;
255     unsigned char :1;
256   };
257   struct {
258     unsigned char NOT_BOR:1;
259     unsigned char :1;
260     unsigned char :1;
261     unsigned char :1;
262     unsigned char :1;
263     unsigned char :1;
264     unsigned char :1;
265     unsigned char :1;
266   };
267 } __PCON_bits_t;
268 extern volatile __PCON_bits_t __at(PCON_ADDR) PCON_bits;
269
270 #define NOT_BO               PCON_bits.NOT_BO
271 #define NOT_BOR              PCON_bits.NOT_BOR
272 #define NOT_POR              PCON_bits.NOT_POR
273
274 // ----- PIE1 bits --------------------
275 typedef union {
276   struct {
277     unsigned char :1;
278     unsigned char :1;
279     unsigned char :1;
280     unsigned char :1;
281     unsigned char :1;
282     unsigned char :1;
283     unsigned char CMIE:1;
284     unsigned char :1;
285   };
286 } __PIE1_bits_t;
287 extern volatile __PIE1_bits_t __at(PIE1_ADDR) PIE1_bits;
288
289 #define CMIE                 PIE1_bits.CMIE
290
291 // ----- PIR1 bits --------------------
292 typedef union {
293   struct {
294     unsigned char :1;
295     unsigned char :1;
296     unsigned char :1;
297     unsigned char :1;
298     unsigned char :1;
299     unsigned char :1;
300     unsigned char CMIF:1;
301     unsigned char :1;
302   };
303 } __PIR1_bits_t;
304 extern volatile __PIR1_bits_t __at(PIR1_ADDR) PIR1_bits;
305
306 #define CMIF                 PIR1_bits.CMIF
307
308 // ----- PORTA bits --------------------
309 typedef union {
310   struct {
311     unsigned char RA0:1;
312     unsigned char RA1:1;
313     unsigned char RA2:1;
314     unsigned char RA3:1;
315     unsigned char RA4:1;
316     unsigned char RA5:1;
317     unsigned char :1;
318     unsigned char :1;
319   };
320 } __PORTA_bits_t;
321 extern volatile __PORTA_bits_t __at(PORTA_ADDR) PORTA_bits;
322
323 #define RA0                  PORTA_bits.RA0
324 #define RA1                  PORTA_bits.RA1
325 #define RA2                  PORTA_bits.RA2
326 #define RA3                  PORTA_bits.RA3
327 #define RA4                  PORTA_bits.RA4
328 #define RA5                  PORTA_bits.RA5
329
330 // ----- PORTB bits --------------------
331 typedef union {
332   struct {
333     unsigned char RB0:1;
334     unsigned char RB1:1;
335     unsigned char RB2:1;
336     unsigned char RB3:1;
337     unsigned char RB4:1;
338     unsigned char RB5:1;
339     unsigned char RB6:1;
340     unsigned char RB7:1;
341   };
342 } __PORTB_bits_t;
343 extern volatile __PORTB_bits_t __at(PORTB_ADDR) PORTB_bits;
344
345 #define RB0                  PORTB_bits.RB0
346 #define RB1                  PORTB_bits.RB1
347 #define RB2                  PORTB_bits.RB2
348 #define RB3                  PORTB_bits.RB3
349 #define RB4                  PORTB_bits.RB4
350 #define RB5                  PORTB_bits.RB5
351 #define RB6                  PORTB_bits.RB6
352 #define RB7                  PORTB_bits.RB7
353
354 // ----- STATUS bits --------------------
355 typedef union {
356   struct {
357     unsigned char C:1;
358     unsigned char DC:1;
359     unsigned char Z:1;
360     unsigned char NOT_PD:1;
361     unsigned char NOT_TO:1;
362     unsigned char RP0:1;
363     unsigned char RP1:1;
364     unsigned char IRP:1;
365   };
366 } __STATUS_bits_t;
367 extern volatile __STATUS_bits_t __at(STATUS_ADDR) STATUS_bits;
368
369 #define C                    STATUS_bits.C
370 #define DC                   STATUS_bits.DC
371 #define Z                    STATUS_bits.Z
372 #define NOT_PD               STATUS_bits.NOT_PD
373 #define NOT_TO               STATUS_bits.NOT_TO
374 #define RP0                  STATUS_bits.RP0
375 #define RP1                  STATUS_bits.RP1
376 #define IRP                  STATUS_bits.IRP
377
378 // ----- TRISA bits --------------------
379 typedef union {
380   struct {
381     unsigned char TRISA0:1;
382     unsigned char TRISA1:1;
383     unsigned char TRISA2:1;
384     unsigned char TRISA3:1;
385     unsigned char TRISA4:1;
386     unsigned char TRISA5:1;
387     unsigned char :1;
388     unsigned char :1;
389   };
390 } __TRISA_bits_t;
391 extern volatile __TRISA_bits_t __at(TRISA_ADDR) TRISA_bits;
392
393 #define TRISA0               TRISA_bits.TRISA0
394 #define TRISA1               TRISA_bits.TRISA1
395 #define TRISA2               TRISA_bits.TRISA2
396 #define TRISA3               TRISA_bits.TRISA3
397 #define TRISA4               TRISA_bits.TRISA4
398 #define TRISA5               TRISA_bits.TRISA5
399
400 // ----- TRISB bits --------------------
401 typedef union {
402   struct {
403     unsigned char TRISB0:1;
404     unsigned char TRISB1:1;
405     unsigned char TRISB2:1;
406     unsigned char TRISB3:1;
407     unsigned char TRISB4:1;
408     unsigned char TRISB5:1;
409     unsigned char TRISB6:1;
410     unsigned char TRISB7:1;
411   };
412 } __TRISB_bits_t;
413 extern volatile __TRISB_bits_t __at(TRISB_ADDR) TRISB_bits;
414
415 #define TRISB0               TRISB_bits.TRISB0
416 #define TRISB1               TRISB_bits.TRISB1
417 #define TRISB2               TRISB_bits.TRISB2
418 #define TRISB3               TRISB_bits.TRISB3
419 #define TRISB4               TRISB_bits.TRISB4
420 #define TRISB5               TRISB_bits.TRISB5
421 #define TRISB6               TRISB_bits.TRISB6
422 #define TRISB7               TRISB_bits.TRISB7
423
424 // ----- VRCON bits --------------------
425 typedef union {
426   struct {
427     unsigned char VR0:1;
428     unsigned char VR1:1;
429     unsigned char VR2:1;
430     unsigned char VR3:1;
431     unsigned char :1;
432     unsigned char VRR:1;
433     unsigned char VROE:1;
434     unsigned char VREN:1;
435   };
436 } __VRCON_bits_t;
437 extern volatile __VRCON_bits_t __at(VRCON_ADDR) VRCON_bits;
438
439 #define VR0                  VRCON_bits.VR0
440 #define VR1                  VRCON_bits.VR1
441 #define VR2                  VRCON_bits.VR2
442 #define VR3                  VRCON_bits.VR3
443 #define VRR                  VRCON_bits.VRR
444 #define VROE                 VRCON_bits.VROE
445 #define VREN                 VRCON_bits.VREN
446
447 #endif