* doc/sdccman.lyx: updated PIC14/16 command line args, updated PIC14
authortecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 14 Jan 2007 23:40:09 +0000 (23:40 +0000)
committertecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 14 Jan 2007 23:40:09 +0000 (23:40 +0000)
    code page and data banking description
* src/pic/genarith.c,
* src/pic/gen.h: removed bit arithmetic functions,
    updated exit(1) to exit(EXIT_FAILURE)
* device/lib/pic16/libsdcc/stack/stack.S: default to 256 byte stack
* device/include/pic16/pic18f2455.h,
* device/lib/pic16/libdev/pic18f2455.c: added PORTD, LATD, LATE,
    TRISD and TRISE, fixed/added some bit names
* device/lib/pic16/libdev/pic18f{2550,4550,4455}.c,
* device/include/pic16/pic18f{2550,4550,4455}.h: simply include
    updated pic18f2455.{c,h} instead of duplicating them

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4573 4a8a32a2-be11-0410-ad9d-d568d2c75423

13 files changed:
ChangeLog
device/include/pic16/pic18f2455.h
device/include/pic16/pic18f2550.h
device/include/pic16/pic18f4455.h
device/include/pic16/pic18f4550.h
device/lib/pic16/libdev/pic18f2455.c
device/lib/pic16/libdev/pic18f2550.c
device/lib/pic16/libdev/pic18f4455.c
device/lib/pic16/libdev/pic18f4550.c
device/lib/pic16/libsdcc/stack/stack.S
doc/sdccman.lyx
src/pic/gen.h
src/pic/genarith.c

index 854ab9b18cad1ca5246e77bf94a8e7a4e3f7877a..1723c1e726dc5f4e3d2fbaa69cc9242d66cfe625 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2007-01-15 Raphael Neider <rneider AT web.de>
+
+       * doc/sdccman.lyx: updated PIC14/16 command line args, updated PIC14
+           code page and data banking description
+       * src/pic/genarith.c,
+       * src/pic/gen.h: removed bit arithmetic functions,
+           updated exit(1) to exit(EXIT_FAILURE)
+       * device/lib/pic16/libsdcc/stack/stack.S: default to 256 byte stack
+       * device/include/pic16/pic18f2455.h,
+       * device/lib/pic16/libdev/pic18f2455.c: added PORTD, LATD, LATE,
+           TRISD and TRISE, fixed/added some bit names
+       * device/lib/pic16/libdev/pic18f{2550,4550,4455}.c,
+       * device/include/pic16/pic18f{2550,4550,4455}.h: simply include
+           updated pic18f2455.{c,h} instead of duplicating them
+
 2007-01-14 Borut Razem <borut.razem AT siol.net>
 
        * as/mcs51/asnoice.c, as/hc08/asnoice.c: fixed bug #1447412:
index 27c805f057e2bad295d33a496f8e3996fe4b49ce..3fa72b77229dc96bcffe37db8399b3c4b1bfdd14 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * pic18f2455.h - PIC18F2455 Device Library Header
+ * pic18f2455.h - Device Library Header for 18F{2455,2550,4455,4550}
  * 
  * This file is part of the GNU PIC Library.
  * 
@@ -52,8 +52,8 @@ extern __sfr __at (0xF65) SPPCON;
 typedef union {
        struct {
                unsigned SPPEN          : 1;
-               unsigned DMA0WN         : 1;
-               unsigned RDYO           : 1;
+               unsigned SPPOWN         : 1;
+               unsigned                : 1;
                unsigned                : 1;
                unsigned                : 1;
                unsigned                : 1;
@@ -89,7 +89,7 @@ typedef union {
        struct {
                unsigned URSTIF         : 1;
                unsigned UERRIF         : 1;
-               unsigned ACTIVIF        : 1;
+               unsigned ACTVIF         : 1;
                unsigned TRNIF          : 1;
                unsigned IDLEIF         : 1;
                unsigned STALLIF        : 1;
@@ -104,7 +104,7 @@ typedef union {
        struct {
                unsigned URSTIE         : 1;
                unsigned UERRIE         : 1;
-               unsigned ACTIVIE        : 1;
+               unsigned ACTVIE         : 1;
                unsigned TRNIE          : 1;
                unsigned IDLEIE         : 1;
                unsigned STALLIE        : 1;
@@ -447,7 +447,8 @@ typedef union {
                unsigned                : 1;
        };
        struct {
-               unsigned RA             : 8;
+               unsigned RA             : 7;
+               unsigned                : 1;
        };
        /* aliases */
        struct {
@@ -551,17 +552,32 @@ typedef union {
 } __PORTC_t;
 extern volatile __PORTC_t __at (0xF82) PORTCbits;
 
+extern __sfr __at (0xF83) PORTD;
+typedef union {
+       struct {
+               unsigned RD0            : 1;
+               unsigned RD1            : 1;
+               unsigned RD2            : 1;
+               unsigned RD3            : 1;
+               unsigned RD4            : 1;
+               unsigned RD5            : 1;
+               unsigned RD6            : 1;
+               unsigned RD7            : 1;
+       };
+} __PORTD_t;
+extern volatile __PORTD_t __at (0xF83) PORTDbits;
+
 extern __sfr __at (0xF84) PORTE;
 typedef union {
        struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
+               unsigned RE0            : 1;
+               unsigned RE1            : 1;
+               unsigned RE2            : 1;
                unsigned RE3            : 1;
                unsigned                : 1;
                unsigned                : 1;
                unsigned                : 1;
-               unsigned                : 1;
+               unsigned RDPU           : 1;
        };
        struct {
                unsigned RE             : 8;
@@ -625,6 +641,36 @@ typedef union {
 } __LATC_t;
 extern volatile __LATC_t __at (0xF8B) LATCbits;
 
+extern __sfr __at (0xF8C) LATD;
+typedef union {
+       struct {
+               unsigned LATD0          : 1;
+               unsigned LATD1          : 1;
+               unsigned LATD2          : 1;
+               unsigned LATD3          : 1;
+               unsigned LATD4          : 1;
+               unsigned LATD5          : 1;
+               unsigned LATD6          : 1;
+               unsigned LATD7          : 1;
+       };
+} __LATD_t;
+extern volatile __LATD_t __at (0xF8C) LATDbits;
+
+extern __sfr __at (0xF8D) LATE;
+typedef union {
+       struct {
+               unsigned LATE0          : 1;
+               unsigned LATE1          : 1;
+               unsigned LATE2          : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+       };
+} __LATE_t;
+extern volatile __LATE_t __at (0xF8D) LATEbits;
+
 extern __sfr __at (0xF92) TRISA;
 typedef union {
        struct {
@@ -670,13 +716,43 @@ typedef union {
 } __TRISC_t;
 extern volatile __TRISC_t __at (0xF94) TRISCbits;
 
+extern __sfr __at (0xF95) TRISD;
+typedef union {
+       struct {
+               unsigned TRISD0         : 1;
+               unsigned TRISD1         : 1;
+               unsigned TRISD2         : 1;
+               unsigned TRISD3         : 1;
+               unsigned TRISD4         : 1;
+               unsigned TRISD5         : 1;
+               unsigned TRISD6         : 1;
+               unsigned TRISD7         : 1;
+       };
+} __TRISD_t;
+extern volatile __TRISD_t __at (0xF95) TRISDbits;
+
+extern __sfr __at (0xF96) TRISE;
+typedef union {
+       struct {
+               unsigned TRISE0         : 1;
+               unsigned TRISE1         : 1;
+               unsigned TRISE2         : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+               unsigned                : 1;
+       };
+} __TRISE_t;
+extern volatile __TRISE_t __at (0xF96) TRISEbits;
+
 extern __sfr __at (0xF9B) OSCTUNE;
 typedef union {
        struct {
                unsigned TUN            : 5;
                unsigned                : 1;
                unsigned                : 1;
-               unsigned HF256DIV       : 1;
+               unsigned INTSRC         : 1;
        };
 } __OSCTUNE_t;
 extern volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
@@ -691,7 +767,7 @@ typedef union {
                unsigned TXIE           : 1;
                unsigned RCIE           : 1;
                unsigned ADIE           : 1;
-               unsigned                : 1;
+               unsigned SPPIE          : 1;
        };
 } __PIE1_t;
 extern volatile __PIE1_t __at (0xF9D) PIE1bits;
@@ -706,7 +782,7 @@ typedef union {
                unsigned TXIF           : 1;
                unsigned RCIF           : 1;
                unsigned ADIF           : 1;
-               unsigned                : 1;
+               unsigned SPPIF          : 1;
        };
 } __PIR1_t;
 extern volatile __PIR1_t __at (0xF9E) PIR1bits;
@@ -721,7 +797,7 @@ typedef union {
                unsigned TXIP           : 1;
                unsigned RCIP           : 1;
                unsigned ADIP           : 1;
-               unsigned                : 1;
+               unsigned SPPIP          : 1;
        };
 } __IPR1_t;
 extern volatile __IPR1_t __at (0xF9F) IPR1bits;
@@ -882,8 +958,8 @@ extern volatile __CVRCON_t __at (0xFB5) CVRCONbits;
 extern __sfr __at (0xFB6) ECCP1AS;
 typedef union {
        struct {
-               unsigned                : 1;
-               unsigned                : 1;
+               unsigned PSSBD0         : 1;
+               unsigned PSSBD1         : 1;
                unsigned PSSAC0         : 1;
                unsigned PSSAC1         : 1;
                unsigned ECCPAS0        : 1;
@@ -897,13 +973,13 @@ extern volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
 extern __sfr __at (0xFB7) ECCP1DEL;
 typedef union {
        struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
+               unsigned PDC0           : 1;
+               unsigned PDC1           : 1;
+               unsigned PDC2           : 1;
+               unsigned PDC3           : 1;
+               unsigned PDC4           : 1;
+               unsigned PDC5           : 1;
+               unsigned PDC6           : 1;
                unsigned PRSEN          : 1;
        };
 } __ECCP1DEL_t;
@@ -916,9 +992,9 @@ typedef union {
                unsigned WUE            : 1;
                unsigned                : 1;
                unsigned BRG16          : 1;
-               unsigned SCKP           : 1;
-               unsigned                : 1;
-               unsigned RCMT           : 1;
+               unsigned TXCKP          : 1;
+               unsigned RXDTP          : 1;
+               unsigned RCIDL          : 1;
                unsigned ABDOVF         : 1;
        };
 } __BAUDCON_t;
@@ -952,8 +1028,8 @@ typedef union {
                unsigned CCP1M3         : 1;
                unsigned DC1B0          : 1;
                unsigned DC1B1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
+               unsigned P1M0           : 1;
+               unsigned P1M1           : 1;
        };
 } __CCP1CON_t;
 extern volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
@@ -1147,7 +1223,7 @@ extern __sfr __at (0xFD3) OSCCON;
 typedef union {
        struct {
                unsigned SCS            : 2;
-               unsigned FLTS           : 1;
+               unsigned IOFS           : 1;
                unsigned OSTS           : 1;
                unsigned IRCF           : 3;
                unsigned IDLEN          : 1;
@@ -1343,8 +1419,7 @@ extern __sfr __at (0xFF7) TBLPTRH;
 extern __sfr __at (0xFF8) TBLPTRU;
 typedef union {
        struct {
-               unsigned TBLPTRU        : 5;
-               unsigned                : 1;
+               unsigned TBLPTRU        : 6;
                unsigned                : 1;
                unsigned                : 1;
        };
index c28000a3697af67fc2efa3c8a6f19e6e56f663ea..9f1f74d9e95e4897fb81c3b189e94f20c9519cfc 100644 (file)
 /* 
  * pic18f2550.h - PIC18F2550 Device Library Header
- * 
- * This file is part of the GNU PIC Library.
- * 
- * May, 2005
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#ifndef __PIC18F2550_H__
-#define __PIC18F2550_H__ 1
+#include "pic18f2455.h"
 
-extern __sfr __at (0xF62) SPPDATA;
-typedef union {
-       struct {
-               unsigned DATA           : 8;
-       };
-} __SPPDATA_t;
-extern volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-extern __sfr __at (0xF63) SPPCFG;
-typedef union {
-       struct {
-               unsigned WS             : 4;
-               unsigned CLK1EN         : 1;
-               unsigned CSEN           : 1;
-               unsigned CLKCFG         : 2;
-       };
-} __SPPCFG_t;
-extern volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-extern __sfr __at (0xF64) SPPEPS;
-typedef union {
-       struct {
-               unsigned ADDR           : 4;
-               unsigned SPPBUSY        : 1;
-               unsigned                : 1;
-               unsigned WRSPP          : 1;
-               unsigned RDSPP          : 1;
-       };
-} __SPPEPS_t;
-extern volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-extern __sfr __at (0xF65) SPPCON;
-typedef union {
-       struct {
-               unsigned SPPEN          : 1;
-               unsigned DMA0WN         : 1;
-               unsigned RDYO           : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __SPPCON_t;
-extern volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-extern __sfr __at (0xF66) UFRML;
-typedef union {
-       struct {
-               unsigned FRM            : 8;
-       };
-} __UFRML_t;
-extern volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-extern __sfr __at (0xF67) UFRMH;
-typedef union {
-       struct {
-               unsigned FRM            : 3;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UFRMH_t;
-extern volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-extern __sfr __at (0xF68) UIR;
-typedef union {
-       struct {
-               unsigned URSTIF         : 1;
-               unsigned UERRIF         : 1;
-               unsigned ACTIVIF        : 1;
-               unsigned TRNIF          : 1;
-               unsigned IDLEIF         : 1;
-               unsigned STALLIF        : 1;
-               unsigned SOFIF          : 1;
-               unsigned                : 1;
-       };
-} __UIR_t;
-extern volatile __UIR_t __at (0xF68) UIRbits;
-
-extern __sfr __at (0xF69) UIE;
-typedef union {
-       struct {
-               unsigned URSTIE         : 1;
-               unsigned UERRIE         : 1;
-               unsigned ACTIVIE        : 1;
-               unsigned TRNIE          : 1;
-               unsigned IDLEIE         : 1;
-               unsigned STALLIE        : 1;
-               unsigned SOFIE          : 1;
-               unsigned                : 1;
-       };
-} __UIE_t;
-extern volatile __UIE_t __at (0xF69) UIEbits;
-
-extern __sfr __at (0xF6A) UEIR;
-typedef union {
-       struct {
-               unsigned PIDEF          : 1;
-               unsigned CRC5EF         : 1;
-               unsigned CRC16EF        : 1;
-               unsigned DFN8EF         : 1;
-               unsigned BTOEF          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEF          : 1;
-       };
-} __UEIR_t;
-extern volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-extern __sfr __at (0xF6B) UEIE;
-typedef union {
-       struct {
-               unsigned PIDEE          : 1;
-               unsigned CRC5EE         : 1;
-               unsigned CRC16EE        : 1;
-               unsigned DFN8EE         : 1;
-               unsigned BTOEE          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEE          : 1;
-       };
-} __UEIE_t;
-extern volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-extern __sfr __at (0xF6C) USTAT;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned PPBI           : 1;
-               unsigned DIR            : 1;
-               unsigned ENDP           : 4;
-               unsigned                : 1;
-       };
-} __USTAT_t;
-extern volatile __USTAT_t __at (0xF6C) USTATbits;
-
-extern __sfr __at (0xF6D) UCON;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned SUSPND         : 1;
-               unsigned RESUME         : 1;
-               unsigned USBEN          : 1;
-               unsigned PKTDIS         : 1;
-               unsigned SE0            : 1;
-               unsigned PPBRST         : 1;
-               unsigned                : 1;
-       };
-} __UCON_t;
-extern volatile __UCON_t __at (0xF6D) UCONbits;
-
-extern __sfr __at (0xF6E) UADDR;
-typedef union {
-       struct {
-               unsigned ADDR           : 7;
-               unsigned                : 1;
-       };
-} __UADDR_t;
-extern volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-extern __sfr __at (0xF6F) UCFG;
-typedef union {
-       struct {
-               unsigned PPB            : 2;
-               unsigned FSEN           : 1;
-               unsigned UTRDIS         : 1;
-               unsigned UPUEN          : 1;
-               unsigned                : 1;
-               unsigned UOEMON         : 1;
-               unsigned UTEYE          : 1;
-       };
-} __UCFG_t;
-extern volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-extern __sfr __at (0xF70) UEP0;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP0_t;
-extern volatile __UEP0_t __at (0xF70) UEP0bits;
-
-extern __sfr __at (0xF71) UEP1;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP1_t;
-extern volatile __UEP1_t __at (0xF71) UEP1bits;
-
-extern __sfr __at (0xF72) UEP2;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP2_t;
-extern volatile __UEP2_t __at (0xF72) UEP2bits;
-
-extern __sfr __at (0xF73) UEP3;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP3_t;
-extern volatile __UEP3_t __at (0xF73) UEP3bits;
-
-extern __sfr __at (0xF74) UEP4;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP4_t;
-extern volatile __UEP4_t __at (0xF74) UEP4bits;
-
-extern __sfr __at (0xF75) UEP5;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP5_t;
-extern volatile __UEP5_t __at (0xF75) UEP5bits;
-
-extern __sfr __at (0xF76) UEP6;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP6_t;
-extern volatile __UEP6_t __at (0xF76) UEP6bits;
-
-extern __sfr __at (0xF77) UEP7;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP7_t;
-extern volatile __UEP7_t __at (0xF77) UEP7bits;
-
-extern __sfr __at (0xF78) UEP8;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP8_t;
-extern volatile __UEP8_t __at (0xF78) UEP8bits;
-
-extern __sfr __at (0xF79) UEP9;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP9_t;
-extern volatile __UEP9_t __at (0xF79) UEP9bits;
-
-extern __sfr __at (0xF7A) UEP10;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP10_t;
-extern volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-extern __sfr __at (0xF7B) UEP11;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP11_t;
-extern volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-extern __sfr __at (0xF7C) UEP12;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP12_t;
-extern volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-extern __sfr __at (0xF7D) UEP13;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP13_t;
-extern volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-extern __sfr __at (0xF7E) UEP14;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP14_t;
-extern volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-extern __sfr __at (0xF7F) UEP15;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP15_t;
-extern volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-extern __sfr __at (0xF80) PORTA;
-typedef union {
-       struct {
-               unsigned RA0            : 1;
-               unsigned RA1            : 1;
-               unsigned RA2            : 1;
-               unsigned RA3            : 1;
-               unsigned RA4            : 1;
-               unsigned RA5            : 1;
-               unsigned RA6            : 1;
-               unsigned                : 1;
-       };
-       struct {
-               unsigned RA             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned C1INN          :1;
-               unsigned C2INN          :1;
-               unsigned C2INP          :1;
-               unsigned C1INP          :1;
-               unsigned C1OUT          :1;
-               unsigned C2OUT          :1;
-               unsigned OSC2           :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned AN0            :1;
-               unsigned AN1            :1;
-               unsigned AN2            :1;
-               unsigned AN3            :1;
-               unsigned T0CKI          :1;
-               unsigned AN4            :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTA_t;
-extern volatile __PORTA_t __at (0xF80) PORTAbits;
-
-extern __sfr __at (0xF81) PORTB;
-typedef union {
-       struct {
-               unsigned RB0            : 1;
-               unsigned RB1            : 1;
-               unsigned RB2            : 1;
-               unsigned RB3            : 1;
-               unsigned RB4            : 1;
-               unsigned RB5            : 1;
-               unsigned RB6            : 1;
-               unsigned RB7            : 1;
-       };
-       struct {
-               unsigned RB             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned                :1;
-               unsigned                :1;
-               unsigned AN8            :1;
-               unsigned AN9            :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTB_t;
-extern volatile __PORTB_t __at (0xF81) PORTBbits;
-
-extern __sfr __at (0xF82) PORTC;
-typedef union {
-       struct {
-               unsigned RC0            : 1;
-               unsigned RC1            : 1;
-               unsigned RC2            : 1;
-               unsigned                : 1;
-               unsigned RC4            : 1;
-               unsigned RC5            : 1;
-               unsigned RC6            : 1;
-               unsigned RC7            : 1;
-       };
-       struct {
-               unsigned RC             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned T1CKI          :1;
-               unsigned T1OSCI         :1;
-               unsigned ECCPA          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned U1TX           :1;
-               unsigned U1RX           :1;
-       };
-       struct {
-               unsigned T3CKI          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned T1OSCO         :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTC_t;
-extern volatile __PORTC_t __at (0xF82) PORTCbits;
-
-extern __sfr __at (0xF84) PORTE;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned RE3            : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-       struct {
-               unsigned RE             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned MCLR           :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTE_t;
-extern volatile __PORTE_t __at (0xF84) PORTEbits;
-
-extern __sfr __at (0xF89) LATA;
-typedef union {
-       struct {
-               unsigned LATA0          : 1;
-               unsigned LATA1          : 1;
-               unsigned LATA2          : 1;
-               unsigned LATA3          : 1;
-               unsigned LATA4          : 1;
-               unsigned LATA5          : 1;
-               unsigned LATA6          : 1;
-               unsigned                : 1;
-       };
-} __LATA_t;
-extern volatile __LATA_t __at (0xF89) LATAbits;
-
-extern __sfr __at (0xF8A) LATB;
-typedef union {
-       struct {
-               unsigned LATB0          : 1;
-               unsigned LATB1          : 1;
-               unsigned LATB2          : 1;
-               unsigned LATB3          : 1;
-               unsigned LATB4          : 1;
-               unsigned LATB5          : 1;
-               unsigned LATB6          : 1;
-               unsigned LATB7          : 1;
-       };
-} __LATB_t;
-extern volatile __LATB_t __at (0xF8A) LATBbits;
-
-extern __sfr __at (0xF8B) LATC;
-typedef union {
-       struct {
-               unsigned LATC0          : 1;
-               unsigned LATC1          : 1;
-               unsigned LATC2          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned LATC6          : 1;
-               unsigned LATC7          : 1;
-       };
-} __LATC_t;
-extern volatile __LATC_t __at (0xF8B) LATCbits;
-
-extern __sfr __at (0xF92) TRISA;
-typedef union {
-       struct {
-               unsigned TRISA0         : 1;
-               unsigned TRISA1         : 1;
-               unsigned TRISA2         : 1;
-               unsigned TRISA3         : 1;
-               unsigned TRISA4         : 1;
-               unsigned TRISA5         : 1;
-               unsigned TRISA6         : 1;
-               unsigned                : 1;
-       };
-} __TRISA_t;
-extern volatile __TRISA_t __at (0xF92) TRISAbits;
-
-extern __sfr __at (0xF93) TRISB;
-typedef union {
-       struct {
-               unsigned TRISB0         : 1;
-               unsigned TRISB1         : 1;
-               unsigned TRISB2         : 1;
-               unsigned TRISB3         : 1;
-               unsigned TRISB4         : 1;
-               unsigned TRISB5         : 1;
-               unsigned TRISB6         : 1;
-               unsigned TRISB7         : 1;
-       };
-} __TRISB_t;
-extern volatile __TRISB_t __at (0xF93) TRISBbits;
-
-extern __sfr __at (0xF94) TRISC;
-typedef union {
-       struct {
-               unsigned TRISC0         : 1;
-               unsigned TRISC1         : 1;
-               unsigned TRISC2         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned TRISC6         : 1;
-               unsigned TRISC7         : 1;
-       };
-} __TRISC_t;
-extern volatile __TRISC_t __at (0xF94) TRISCbits;
-
-extern __sfr __at (0xF9B) OSCTUNE;
-typedef union {
-       struct {
-               unsigned TUN            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned HF256DIV       : 1;
-       };
-} __OSCTUNE_t;
-extern volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-extern __sfr __at (0xF9D) PIE1;
-typedef union {
-       struct {
-               unsigned TMR1IE         : 1;
-               unsigned TMR2IE         : 1;
-               unsigned CCP1IE         : 1;
-               unsigned SSPIE          : 1;
-               unsigned TXIE           : 1;
-               unsigned RCIE           : 1;
-               unsigned ADIE           : 1;
-               unsigned                : 1;
-       };
-} __PIE1_t;
-extern volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-extern __sfr __at (0xF9E) PIR1;
-typedef union {
-       struct {
-               unsigned TMR1IF         : 1;
-               unsigned TMR2IF         : 1;
-               unsigned CCP1IF         : 1;
-               unsigned SSPIF          : 1;
-               unsigned TXIF           : 1;
-               unsigned RCIF           : 1;
-               unsigned ADIF           : 1;
-               unsigned                : 1;
-       };
-} __PIR1_t;
-extern volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-extern __sfr __at (0xF9F) IPR1;
-typedef union {
-       struct {
-               unsigned TMR1IP         : 1;
-               unsigned TMR2IP         : 1;
-               unsigned CCP1IP         : 1;
-               unsigned SSPIP          : 1;
-               unsigned TXIP           : 1;
-               unsigned RCIP           : 1;
-               unsigned ADIP           : 1;
-               unsigned                : 1;
-       };
-} __IPR1_t;
-extern volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-extern __sfr __at (0xFA0) PIE2;
-typedef union {
-       struct {
-               unsigned CCP2IE         : 1;
-               unsigned TMR3IE         : 1;
-               unsigned HLVDIE         : 1;
-               unsigned BCLIE          : 1;
-               unsigned EEIE           : 1;
-               unsigned USBIE          : 1;
-               unsigned CMIE           : 1;
-               unsigned OSCFIE         : 1;
-       };
-} __PIE2_t;
-extern volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-extern __sfr __at (0xFA1) PIR2;
-typedef union {
-       struct {
-               unsigned CCP2IF         : 1;
-               unsigned TMR3IF         : 1;
-               unsigned HLVDIF         : 1;
-               unsigned BCLIF          : 1;
-               unsigned EEIF           : 1;
-               unsigned USBIF          : 1;
-               unsigned CMIF           : 1;
-               unsigned OSCFIF         : 1;
-       };
-} __PIR2_t;
-extern volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-extern __sfr __at (0xFA2) IPR2;
-typedef union {
-       struct {
-               unsigned CCP2IP         : 1;
-               unsigned TMR3IP         : 1;
-               unsigned HLVDIP         : 1;
-               unsigned BCLIP          : 1;
-               unsigned EEIP           : 1;
-               unsigned USBIP          : 1;
-               unsigned CMIP           : 1;
-               unsigned OSCFIP         : 1;
-       };
-} __IPR2_t;
-extern volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-extern __sfr __at (0xFA6) EECON1;
-typedef union {
-       struct {
-               unsigned RD             : 1;
-               unsigned WR             : 1;
-               unsigned WREN           : 1;
-               unsigned WRERR          : 1;
-               unsigned FREE           : 1;
-               unsigned                : 1;
-               unsigned CFGS           : 1;
-               unsigned EEPGD          : 1;
-       };
-} __EECON1_t;
-extern volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-extern __sfr __at (0xFA7) EECON2;
-
-extern __sfr __at (0xFA8) EEDATA;
-
-extern __sfr __at (0xFA9) EEADR;
-
-extern __sfr __at (0xFAB) RCSTA;
-typedef union {
-       struct {
-               unsigned RX9D           : 1;
-               unsigned OERR           : 1;
-               unsigned FERR           : 1;
-               unsigned ADDEN          : 1;
-               unsigned CREN           : 1;
-               unsigned SREN           : 1;
-               unsigned RX9            : 1;
-               unsigned SPEN           : 1;
-       };
-} __RCSTA_t;
-extern volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-extern __sfr __at (0xFAC) TXSTA;
-typedef union {
-       struct {
-               unsigned TX9D           : 1;
-               unsigned TRMT           : 1;
-               unsigned BRGH           : 1;
-               unsigned SENDB          : 1;
-               unsigned SYNC           : 1;
-               unsigned TXEN           : 1;
-               unsigned TX9            : 1;
-               unsigned CSRC           : 1;
-       };
-} __TXSTA_t;
-extern volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-extern __sfr __at (0xFAD) TXREG;
-
-extern __sfr __at (0xFAE) RCREG;
-
-extern __sfr __at (0xFAF) SPBRG;
-
-extern __sfr __at (0xFB0) SPBRGH;
-
-extern __sfr __at (0xFB1) T3CON;
-typedef union {
-       struct {
-               unsigned TMR3ON         : 1;
-               unsigned TMR3CS         : 1;
-               unsigned NOT_T3SYNC     : 1;
-               unsigned T3CCP1         : 1;
-               unsigned T3CKPS0        : 1;
-               unsigned T3CKPS1        : 1;
-               unsigned T3CCP2         : 1;
-               unsigned RD16           : 1;
-       };
-} __T3CON_t;
-extern volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-extern __sfr __at (0xFB2) TMR3L;
-
-extern __sfr __at (0xFB3) TMR3H;
-
-extern __sfr __at (0xFB4) CMCON;
-typedef union {
-       struct {
-               unsigned CM0            : 1;
-               unsigned CM1            : 1;
-               unsigned CM2            : 1;
-               unsigned CIS            : 1;
-               unsigned C1INV          : 1;
-               unsigned C2INV          : 1;
-               unsigned C1OUT          : 1;
-               unsigned C2OUT          : 1;
-       };
-} __CMCON_t;
-extern volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-extern __sfr __at (0xFB5) CVRCON;
-typedef union {
-       struct {
-               unsigned CVR0           : 1;
-               unsigned CVR1           : 1;
-               unsigned CVR2           : 1;
-               unsigned CVR3           : 1;
-               unsigned CVRSS          : 1;
-               unsigned CVRR           : 1;
-               unsigned CVROE          : 1;
-               unsigned CVREN          : 1;
-       };
-} __CVRCON_t;
-extern volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-extern __sfr __at (0xFB6) ECCP1AS;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned PSSAC0         : 1;
-               unsigned PSSAC1         : 1;
-               unsigned ECCPAS0        : 1;
-               unsigned ECCPAS1        : 1;
-               unsigned ECCPAS2        : 1;
-               unsigned ECCPASE        : 1;
-       };
-} __ECCP1AS_t;
-extern volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-extern __sfr __at (0xFB7) ECCP1DEL;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned PRSEN          : 1;
-       };
-} __ECCP1DEL_t;
-extern volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-extern __sfr __at (0xFB8) BAUDCON;
-typedef union {
-       struct {
-               unsigned ABDEN          : 1;
-               unsigned WUE            : 1;
-               unsigned                : 1;
-               unsigned BRG16          : 1;
-               unsigned SCKP           : 1;
-               unsigned                : 1;
-               unsigned RCMT           : 1;
-               unsigned ABDOVF         : 1;
-       };
-} __BAUDCON_t;
-extern volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-extern __sfr __at (0xFBA) CCP2CON;
-typedef union {
-       struct {
-               unsigned CCP2M0         : 1;
-               unsigned CCP2M1         : 1;
-               unsigned CCP2M2         : 1;
-               unsigned CCP2M3         : 1;
-               unsigned DC2B0          : 1;
-               unsigned DC2B1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __CCP2CON_t;
-extern volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-extern __sfr __at (0xFBB) CCPR2L;
-
-extern __sfr __at (0xFBC) CCPR2H;
-
-extern __sfr __at (0xFBD) CCP1CON;
-typedef union {
-       struct {
-               unsigned CCP1M0         : 1;
-               unsigned CCP1M1         : 1;
-               unsigned CCP1M2         : 1;
-               unsigned CCP1M3         : 1;
-               unsigned DC1B0          : 1;
-               unsigned DC1B1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __CCP1CON_t;
-extern volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-extern __sfr __at (0xFBE) CCPR1L;
-
-extern __sfr __at (0xFBF) CCPR1H;
-
-extern __sfr __at (0xFC0) ADCON2;
-typedef union {
-       struct {
-               unsigned ADCS0          : 1;
-               unsigned ADCS1          : 1;
-               unsigned ADCS2          : 1;
-               unsigned ACQT0          : 1;
-               unsigned ACQT1          : 1;
-               unsigned ACQT2          : 1;
-               unsigned                : 1;
-               unsigned ADFM           : 1;
-       };
-} __ADCON2_t;
-extern volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-extern __sfr __at (0xFC1) ADCON1;
-typedef union {
-       struct {
-               unsigned PCFG0          : 1;
-               unsigned PCFG1          : 1;
-               unsigned PCFG2          : 1;
-               unsigned PCFG3          : 1;
-               unsigned VCFG0          : 1;
-               unsigned VCFG1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON1_t;
-extern volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-extern __sfr __at (0xFC2) ADCON0;
-typedef union {
-       struct {
-               unsigned ADON           : 1;
-               unsigned GO             : 1;
-               unsigned CHS0           : 1;
-               unsigned CHS1           : 1;
-               unsigned CHS2           : 1;
-               unsigned CHS3           : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON0_t;
-extern volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-extern __sfr __at (0xFC3) ADRESL;
-
-extern __sfr __at (0xFC4) ADRESH;
-
-extern __sfr __at (0xFC5) SSPCON2;
-typedef union {
-       struct {
-               unsigned SEN            : 1;
-               unsigned RSEN           : 1;
-               unsigned PEN            : 1;
-               unsigned RCEN           : 1;
-               unsigned ACKEN          : 1;
-               unsigned ACKDT          : 1;
-               unsigned ACKSTAT        : 1;
-               unsigned GCEN           : 1;
-       };
-} __SSPCON2_t;
-extern volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-extern __sfr __at (0xFC6) SSPCON1;
-typedef union {
-       struct {
-               unsigned SSPM0          : 1;
-               unsigned SSPM1          : 1;
-               unsigned SSPM2          : 1;
-               unsigned SSPM3          : 1;
-               unsigned CKP            : 1;
-               unsigned SSPEN          : 1;
-               unsigned SSPOV          : 1;
-               unsigned WCOL           : 1;
-       };
-} __SSPCON1_t;
-extern volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-extern __sfr __at (0xFC7) SSPSTAT;
-typedef union {
-       struct {
-               unsigned BF             : 1;
-               unsigned UA             : 1;
-               unsigned R_W            : 1;
-               unsigned S              : 1;
-               unsigned P              : 1;
-               unsigned D_A            : 1;
-               unsigned CKE            : 1;
-               unsigned SMP            : 1;
-       };
-} __SSPSTAT_t;
-extern volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-extern __sfr __at (0xFC8) SSPADD;
-
-extern __sfr __at (0xFC9) SSPBUF;
-
-extern __sfr __at (0xFCA) T2CON;
-typedef union {
-       struct {
-               unsigned T2CKPS0        : 1;
-               unsigned T2CKPS1        : 1;
-               unsigned TMR2ON         : 1;
-               unsigned TOUTPS0        : 1;
-               unsigned TOUTPS1        : 1;
-               unsigned TOUTPS2        : 1;
-               unsigned TOUTPS3        : 1;
-               unsigned                : 1;
-       };
-} __T2CON_t;
-extern volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-extern __sfr __at (0xFCB) PR2;
-
-extern __sfr __at (0xFCC) TMR2;
-
-extern __sfr __at (0xFCD) T1CON;
-typedef union {
-       struct {
-               unsigned TMR1ON         : 1;
-               unsigned TMR1CS         : 1;
-               unsigned NOT_T1SYNC     : 1;
-               unsigned T1OSCEN        : 1;
-               unsigned T1CKPS0        : 1;
-               unsigned T1CKPS1        : 1;
-               unsigned T1RUN          : 1;
-               unsigned RD16           : 1;
-       };
-} __T1CON_t;
-extern volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-extern __sfr __at (0xFCE) TMR1L;
-
-extern __sfr __at (0xFCF) TMR1H;
-
-extern __sfr __at (0xFD0) RCON;
-typedef union {
-       struct {
-               unsigned BOR            : 1;
-               unsigned POR            : 1;
-               unsigned PD             : 1;
-               unsigned TO             : 1;
-               unsigned RI             : 1;
-               unsigned                : 1;
-               unsigned SBOREN         : 1;
-               unsigned IPEN           : 1;
-       };
-} __RCON_t;
-extern volatile __RCON_t __at (0xFD0) RCONbits;
-
-extern __sfr __at (0xFD1) WDTCON;
-typedef union {
-       struct {
-               unsigned SWDTEN         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __WDTCON_t;
-extern volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-extern __sfr __at (0xFD2) HLVDCON;
-typedef union {
-       struct {
-               unsigned HLVDL0         : 1;
-               unsigned HLVDL1         : 1;
-               unsigned HLVDL2         : 1;
-               unsigned HLVDL3         : 1;
-               unsigned HLVDEN         : 1;
-               unsigned IRVST          : 1;
-               unsigned                : 1;
-               unsigned VDIRMAG        : 1;
-       };
-} __HLVDCON_t;
-extern volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-extern __sfr __at (0xFD3) OSCCON;
-typedef union {
-       struct {
-               unsigned SCS            : 2;
-               unsigned FLTS           : 1;
-               unsigned OSTS           : 1;
-               unsigned IRCF           : 3;
-               unsigned IDLEN          : 1;
-       };
-} __OSCCON_t;
-extern volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-extern __sfr __at (0xFD5) T0CON;
-typedef union {
-       struct {
-               unsigned T0PS0          : 1;
-               unsigned T0PS1          : 1;
-               unsigned T0PS2          : 1;
-               unsigned PSA            : 1;
-               unsigned T0SE           : 1;
-               unsigned T0CS           : 1;
-               unsigned T08BIT         : 1;
-               unsigned TMR0ON         : 1;
-       };
-} __T0CON_t;
-extern volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-extern __sfr __at (0xFD6) TMR0L;
-
-extern __sfr __at (0xFD7) TMR0H;
-
-extern __sfr __at (0xFD8) STATUS;
-typedef union {
-       struct {
-               unsigned C              : 1;
-               unsigned DC             : 1;
-               unsigned Z              : 1;
-               unsigned OV             : 1;
-               unsigned N              : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __STATUS_t;
-extern volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-extern __sfr __at (0xFD9) FSR2L;
-
-extern __sfr __at (0xFDA) FSR2H;
-typedef union {
-       struct {
-               unsigned FSR2H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR2H_t;
-extern volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-extern __sfr __at (0xFDB) PLUSW2;
-
-extern __sfr __at (0xFDC) PREINC2;
-
-extern __sfr __at (0xFDD) POSTDEC2;
-
-extern __sfr __at (0xFDE) POSTINC2;
-
-extern __sfr __at (0xFDF) INDF2;
-
-extern __sfr __at (0xFE0) BSR;
-typedef union {
-       struct {
-               unsigned BSR            : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __BSR_t;
-extern volatile __BSR_t __at (0xFE0) BSRbits;
-
-extern __sfr __at (0xFE1) FSR1L;
-
-extern __sfr __at (0xFE2) FSR1H;
-typedef union {
-       struct {
-               unsigned FSR1H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR1H_t;
-extern volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-extern __sfr __at (0xFE3) PLUSW1;
-
-extern __sfr __at (0xFE4) PREINC1;
-
-extern __sfr __at (0xFE5) POSTDEC1;
-
-extern __sfr __at (0xFE6) POSTINC1;
-
-extern __sfr __at (0xFE7) INDF1;
-
-extern __sfr __at (0xFE8) WREG;
-
-extern __sfr __at (0xFE9) FSR0L;
-
-extern __sfr __at (0xFEA) FSR0H;
-typedef union {
-       struct {
-               unsigned FSR0H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR0H_t;
-extern volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-extern __sfr __at (0xFEB) PLUSW0;
-
-extern __sfr __at (0xFEC) PREINC0;
-
-extern __sfr __at (0xFED) POSTDEC0;
-
-extern __sfr __at (0xFEE) POSTINC0;
-
-extern __sfr __at (0xFEF) INDF0;
-
-extern __sfr __at (0xFF0) INTCON3;
-typedef union {
-       struct {
-               unsigned INT1IF         : 1;
-               unsigned INT2IF         : 1;
-               unsigned                : 1;
-               unsigned INT1IE         : 1;
-               unsigned INT2IE         : 1;
-               unsigned                : 1;
-               unsigned INT1IP         : 1;
-               unsigned INT2IP         : 1;
-       };
-} __INTCON3_t;
-extern volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-extern __sfr __at (0xFF1) INTCON2;
-typedef union {
-       struct {
-               unsigned RBIP           : 1;
-               unsigned                : 1;
-               unsigned TMR0IP         : 1;
-               unsigned                : 1;
-               unsigned INTEDG2        : 1;
-               unsigned INTEDG1        : 1;
-               unsigned INTEDG0        : 1;
-               unsigned RBPU           : 1;
-       };
-} __INTCON2_t;
-extern volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-extern __sfr __at (0xFF2) INTCON;
-typedef union {
-       struct {
-               unsigned RBIF           : 1;
-               unsigned INT0IF         : 1;
-               unsigned TMR0IF         : 1;
-               unsigned RBIE           : 1;
-               unsigned INT0IE         : 1;
-               unsigned TMR0IE         : 1;
-               unsigned PEIE           : 1;
-               unsigned GIE            : 1;
-       };
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned GIEL           : 1;
-               unsigned GIEH           : 1;
-       };
-} __INTCON_t;
-extern volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-extern __sfr __at (0xFF3) PRODL;
-
-extern __sfr __at (0xFF4) PRODH;
-
-extern __sfr __at (0xFF5) TABLAT;
-
-extern __sfr __at (0xFF6) TBLPTRL;
-
-extern __sfr __at (0xFF7) TBLPTRH;
-
-extern __sfr __at (0xFF8) TBLPTRU;
-typedef union {
-       struct {
-               unsigned TBLPTRU        : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TBLPTRU_t;
-extern volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-extern __sfr __at (0xFF9) PCL;
-
-extern __sfr __at (0xFFA) PCLATH;
-typedef union {
-       struct {
-               unsigned PCH            : 8;
-       };
-} __PCLATH_t;
-extern volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-extern __sfr __at (0xFFB) PCLATU;
-typedef union {
-       struct {
-               unsigned PCU            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __PCLATU_t;
-extern volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-extern __sfr __at (0xFFC) STKPTR;
-typedef union {
-       struct {
-               unsigned STKPTR         : 5;
-               unsigned                : 1;
-               unsigned STKUNF         : 1;
-               unsigned STKFUL         : 1;
-       };
-} __STKPTR_t;
-extern volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-extern __sfr __at (0xFFD) TOSL;
-
-extern __sfr __at (0xFFE) TOSH;
-
-extern __sfr __at (0xFFF) TOSU;
-typedef union {
-       struct {
-               unsigned TOSU           : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TOSU_t;
-extern volatile __TOSU_t __at (0xFFF) TOSUbits;
-
-/* Configuration register locations */
-#define        __CONFIG1L      0x300000
-#define        __CONFIG1H      0x300001
-#define        __CONFIG2L      0x300002
-#define        __CONFIG2H      0x300003
-#define        __CONFIG3H      0x300005
-#define        __CONFIG4L      0x300006
-#define        __CONFIG5L      0x300008
-#define        __CONFIG5H      0x300009
-#define        __CONFIG6L      0x30000A
-#define        __CONFIG6H      0x30000B
-#define        __CONFIG7L      0x30000C
-#define        __CONFIG7H      0x30000D
-
-
-/* Full-Speed USB Clock Source Selection 1L options */
-#define        _USBPLL_CLOCK_SRC_FROM_96MHZ_PLL_2_1L           0xFF    /* Clock src from 96MHz PLL/2 */
-#define        _USBPLL_CLOCK_SRC_FROM_OSC1_OSC2_1L             0xDF    /* Clock src from OSC1/OSC2 */
-
-/* CPU System Clock Postscaler 1L options */
-#define        _CPUDIV__OSC1_OSC2_SRC___4__96MHZ_PLL_SRC___6__1L       0xFF    /* [OSC1/OSC2 Src: /4][96MHz PLL Src: /6] */
-#define        _CPUDIV__OSC1_OSC2_SRC___3__96MHZ_PLL_SRC___4__1L       0xF7    /* [OSC1/OSC2 Src: /3][96MHz PLL Src: /4] */
-#define        _CPUDIV__OSC1_OSC2_SRC___2__96MHZ_PLL_SRC___3__1L       0xEF    /* [OSC1/OSC2 Src: /2][96MHz PLL Src: /3] */
-#define        _CPUDIV__OSC1_OSC2_SRC___1__96MHZ_PLL_SRC___2__1L       0xE7    /* [OSC1/OSC2 Src: /1][96MHz PLL Src: /2] */
-
-/* 96MHz PLL Prescaler 1L options */
-#define        _PLLDIV_DIVIDE_BY_12__48MHZ_INPUT__1L           0xFF    /* Divide by 12 (48MHz input) */
-#define        _PLLDIV_DIVIDE_BY_10__40MHZ_INPUT__1L           0xFE    /* Divide by 10 (40MHz input) */
-#define        _PLLDIV_DIVIDE_BY_6__24MHZ_INPUT__1L            0xFD    /* Divide by 6 (24MHz input) */
-#define        _PLLDIV_DIVIDE_BY_5__20MHZ_INPUT__1L            0xFC    /* Divide by 5 (20MHz input) */
-#define        _PLLDIV_DIVIDE_BY_4__16MHZ_INPUT__1L            0xFB    /* Divide by 4 (16MHz input) */
-#define        _PLLDIV_DIVIDE_BY_3__12MHZ_INPUT__1L            0xFA    /* Divide by 3 (12MHz input) */
-#define        _PLLDIV_DIVIDE_BY_2__8MHZ_INPUT__1L             0xF9    /* Divide by 2 (8MHz input) */
-#define        _PLLDIV_NO_DIVIDE__4MHZ_INPUT__1L               0xF8    /* No Divide (4MHz input) */
-
-
-/* Oscillator 1H options */
-#define        _OSC_HS__HS_PLL__USB_HS_1H                      0xFE    /* HS: HS+PLL, USB-HS */
-#define        _OSC_HS__USB_HS_1H                              0xFC    /* HS: USB-HS */
-#define        _OSC_INTOSC__USB_HS_1H                          0xFB    /* INTOSC: USB-HS */
-#define        _OSC_INTOSC__USB_XT_1H                          0xFA    /* INTOSC: USB-XT */
-#define        _OSC_INTOSC__INTOSC_CLK0_RA6___USB_EC_1H        0xF9    /* INTOSC: INTOSC+CLK0{RA6}, USB-EC */
-#define        _OSC_INTOSC__INTOSC_RA6__USB_EC_1H              0xF8    /* INTOSC: INTOSC+RA6, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_CLKO_RA6___USB_EC_1H    0xF7    /* EC: EC+PLL, EC+PLL+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_RA6__USB_EC_1H          0xF6    /* EC: EC+PLL, EC+PLL+RA6, USB-EC */
-#define        _OSC_EC__EC_CLKO_RA6___USB_EC_1H                0xF5    /* EC: EC+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_RA6__USB_EC_1H                      0xF4    /* EC: EC+RA6, USB-EC */
-#define        _OSC_XT__XT_PLL__USB_XT_1H                      0xF2    /* XT: XT+PLL, USB-XT */
-#define        _OSC_XT__USB_XT_1H                              0xF0    /* XT: USB-XT */
-
-/* Fail-Safe Clock Monitor Enable 1H options */
-#define        _FCMEN_OFF_1H                                   0xBF    /* Disabled */
-#define        _FCMEN_ON_1H                                    0xFF    /* Enabled */
-
-/* Internal External Switch Over Mode 1H options */
-#define        _IESO_OFF_1H                                    0x7F    /* Disabled */
-#define        _IESO_ON_1H                                     0xFF    /* Enabled */
-
-
-/* USB Voltage Regulator 2L options */
-#define        _VREGEN_ON_2L                                   0xFF    /* Enabled */
-#define        _VREGEN_OFF_2L                                  0xDF    /* Disabled */
-
-/* Power Up Timer 2L options */
-#define        _PUT_OFF_2L                                     0xFF    /* Disabled */
-#define        _PUT_ON_2L                                      0xFE    /* Enabled */
-
-/* Brown Out Detect 2L options */
-#define        _BODEN_ON_2L                                    0xFF    /* Enabled in hardware, SBOREN disabled */
-#define        _BODEN_ON_WHILE_ACTIVE_2L                       0xFD    /* Enabled while active,disabled in SLEEP,SBOREN disabled */
-#define        _BODEN_CONTROLLED_WITH_SBOREN_BIT_2L            0xFB    /* Controlled with SBOREN bit */
-#define        _BODEN_OFF_2L                                   0xF9    /* Disabled in hardware, SBOREN disabled */
-
-/* Brown Out Voltage 2L options */
-#define        _BODENV_2_0V_2L                                 0xFF    /* 2.0V */
-#define        _BODENV_2_7V_2L                                 0xF7    /* 2.7V */
-#define        _BODENV_4_2V_2L                                 0xEF    /* 4.2V */
-#define        _BODENV_4_5V_2L                                 0xE7    /* 4.5V */
-
-
-/* Watchdog Timer 2H options */
-#define        _WDT_ON_2H                                      0xFF    /* Enabled */
-#define        _WDT_DISABLED_CONTROLLED_2H                     0xFE    /* Disabled-Controlled by SWDTEN bit */
-
-/* Watchdog Postscaler 2H options */
-#define        _WDTPS_1_32768_2H                               0xFF    /* 1:32768 */
-#define        _WDTPS_1_16384_2H                               0xFD    /* 1:16384 */
-#define        _WDTPS_1_8192_2H                                0xFB    /* 1:8192 */
-#define        _WDTPS_1_4096_2H                                0xF9    /* 1:4096 */
-#define        _WDTPS_1_2048_2H                                0xF7    /* 1:2048 */
-#define        _WDTPS_1_1024_2H                                0xF5    /* 1:1024 */
-#define        _WDTPS_1_512_2H                                 0xF3    /* 1:512 */
-#define        _WDTPS_1_256_2H                                 0xF1    /* 1:256 */
-#define        _WDTPS_1_128_2H                                 0xEF    /* 1:128 */
-#define        _WDTPS_1_64_2H                                  0xED    /* 1:64 */
-#define        _WDTPS_1_32_2H                                  0xEB    /* 1:32 */
-#define        _WDTPS_1_16_2H                                  0xE9    /* 1:16 */
-#define        _WDTPS_1_8_2H                                   0xE7    /* 1:8 */
-#define        _WDTPS_1_4_2H                                   0xE5    /* 1:4 */
-#define        _WDTPS_1_2_2H                                   0xE3    /* 1:2 */
-#define        _WDTPS_1_1_2H                                   0xE1    /* 1:1 */
-
-
-/* CCP2 Mux 3H options */
-#define        _CCP2MUX_RC1_3H                                 0xFF    /* RC1 */
-#define        _CCP2MUX_RB3_3H                                 0xFE    /* RB3 */
-
-/* PortB A/D Enable 3H options */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_ANALOG_INPUTS_ON_RESET_3H      0xFF    /* PORTB<4:0> configured as analog inputs on RESET */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_DIGITAL_I_O_ON_RESET_3H        0xFD    /* PORTB<4:0> configured as digital I/O on RESET */
-
-/* Low Power Timer1 Osc enable 3H options */
-#define        _LPT1OSC_ON_3H                                  0xFF    /* Enabled */
-#define        _LPT1OSC_OFF_3H                                 0xFB    /* Disabled */
-
-/* Master Clear Enable 3H options */
-#define        _MCLRE_MCLR_ON_RE3_OFF_3H                       0xFF    /* MCLR Enabled,RE3 Disabled */
-#define        _MCLRE_MCLR_OFF_RE3_ON_3H                       0x7F    /* MCLR Disabled,RE3 Enabled */
-
-
-/* Stack Overflow Reset 4L options */
-#define        _STVR_ON_4L                                     0xFF    /* Enabled */
-#define        _STVR_OFF_4L                                    0xFE    /* Disabled */
-
-/* Low Voltage Program 4L options */
-#define        _LVP_ON_4L                                      0xFF    /* Enabled */
-#define        _LVP_OFF_4L                                     0xFB    /* Disabled */
-
-/* Dedicated In-Circuit Port {ICD/ICSP} 4L options */
-#define        _ENICPORT_OFF_4L                                0xDF    /* Disabled */
-
-/* Extended CPU Enable 4L options */
-#define        _ENHCPU_ON_4L                                   0xFF    /* Enabled */
-#define        _ENHCPU_OFF_4L                                  0xBF    /* Disabled */
-
-/* Background Debug 4L options */
-#define        _BACKBUG_OFF_4L                                 0xFF    /* Disabled */
-#define        _BACKBUG_ON_4L                                  0x7F    /* Enabled */
-
-
-/* Code Protect 00800-01FFF 5L options */
-#define        _CP_0_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_0_ON_5L                                     0xFE    /* Enabled */
-
-/* Code Protect 02000-03FFF 5L options */
-#define        _CP_1_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_1_ON_5L                                     0xFD    /* Enabled */
-
-/* Code Protect 04000-05FFF 5L options */
-#define        _CP_2_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_2_ON_5L                                     0xFB    /* Enabled */
-
-/* Code Protect 06000-07FFF 5L options */
-#define        _CP_3_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_3_ON_5L                                     0xF7    /* Enabled */
-
-
-/* Data EE Read Protect 5H options */
-#define        _CPD_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPD_ON_5H                                      0x7F    /* Enabled */
-
-/* Code Protect Boot 5H options */
-#define        _CPB_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPB_ON_5H                                      0xBF    /* Enabled */
-
-
-/* Table Write Protect 00800-01FFF 6L options */
-#define        _WRT_0_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_0_ON_6L                                    0xFE    /* Enabled */
-
-/* Table Write Protect 02000-03FFF 6L options */
-#define        _WRT_1_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_1_ON_6L                                    0xFD    /* Enabled */
-
-/* Table Write Protect 04000-05FFF 6L options */
-#define        _WRT_2_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_2_ON_6L                                    0xFB    /* Enabled */
-
-/* Table Write Protect 06000-07FFF 6L options */
-#define        _WRT_3_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_3_ON_6L                                    0xF7    /* Enabled */
-
-
-/* Data EE Write Protect 6H options */
-#define        _WRTD_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTD_ON_6H                                     0x7F    /* Enabled */
-
-/* Table Write Protect Boot 6H options */
-#define        _WRTB_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTB_ON_6H                                     0xBF    /* Enabled */
-
-/* Config. Write Protect 6H options */
-#define        _WRTC_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTC_ON_6H                                     0xDF    /* Enabled */
-
-
-/* Table Read Protect 00800-01FFF 7L options */
-#define        _EBTR_0_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_0_ON_7L                                   0xFE    /* Enabled */
-
-/* Table Read Protect 02000-03FFF 7L options */
-#define        _EBTR_1_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_1_ON_7L                                   0xFD    /* Enabled */
-
-/* Table Read Protect 04000-05FFF 7L options */
-#define        _EBTR_2_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_2_ON_7L                                   0xFB    /* Enabled */
-
-/* Table Read Protect 06000-07FFF 7L options */
-#define        _EBTR_3_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_3_ON_7L                                   0xF7    /* Enabled */
-
-
-/* Table Read Protect Boot 7H options */
-#define        _EBTRB_OFF_7H                                   0xFF    /* Disabled */
-#define        _EBTRB_ON_7H                                    0xBF    /* Enabled */
-
-
-
-/* Location of User ID words */
-#define        __IDLOC0        0x200000
-#define        __IDLOC1        0x200001
-#define        __IDLOC2        0x200002
-#define        __IDLOC3        0x200003
-#define        __IDLOC4        0x200004
-#define        __IDLOC5        0x200005
-#define        __IDLOC6        0x200006
-#define        __IDLOC7        0x200007
-
-#endif // __PIC18F2550__
index 5f6fca8a9f061172934721612b4e9330d43f97db..81c343833e756ca6f16286023394dd8eadeeb9fc 100644 (file)
 /* 
  * pic18f4455.h - PIC18F4455 Device Library Header
- * 
- * This file is part of the GNU PIC Library.
- * 
- * May, 2005
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#ifndef __PIC18F4455_H__
-#define __PIC18F4455_H__ 1
+#include "pic18f2455.h"
 
-extern __sfr __at (0xF62) SPPDATA;
-typedef union {
-       struct {
-               unsigned DATA           : 8;
-       };
-} __SPPDATA_t;
-extern volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-extern __sfr __at (0xF63) SPPCFG;
-typedef union {
-       struct {
-               unsigned WS             : 4;
-               unsigned CLK1EN         : 1;
-               unsigned CSEN           : 1;
-               unsigned CLKCFG         : 2;
-       };
-} __SPPCFG_t;
-extern volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-extern __sfr __at (0xF64) SPPEPS;
-typedef union {
-       struct {
-               unsigned ADDR           : 4;
-               unsigned SPPBUSY        : 1;
-               unsigned                : 1;
-               unsigned WRSPP          : 1;
-               unsigned RDSPP          : 1;
-       };
-} __SPPEPS_t;
-extern volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-extern __sfr __at (0xF65) SPPCON;
-typedef union {
-       struct {
-               unsigned SPPEN          : 1;
-               unsigned SPPOWN         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __SPPCON_t;
-extern volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-extern __sfr __at (0xF66) UFRML;
-typedef union {
-       struct {
-               unsigned FRM            : 8;
-       };
-} __UFRML_t;
-extern volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-extern __sfr __at (0xF67) UFRMH;
-typedef union {
-       struct {
-               unsigned FRM            : 3;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UFRMH_t;
-extern volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-extern __sfr __at (0xF68) UIR;
-typedef union {
-       struct {
-               unsigned URSTIF         : 1;
-               unsigned UERRIF         : 1;
-               unsigned ACTIVIF        : 1;
-               unsigned TRNIF          : 1;
-               unsigned IDLEIF         : 1;
-               unsigned STALLIF        : 1;
-               unsigned SOFIF          : 1;
-               unsigned                : 1;
-       };
-} __UIR_t;
-extern volatile __UIR_t __at (0xF68) UIRbits;
-
-extern __sfr __at (0xF69) UIE;
-typedef union {
-       struct {
-               unsigned URSTIE         : 1;
-               unsigned UERRIE         : 1;
-               unsigned ACTIVIE        : 1;
-               unsigned TRNIE          : 1;
-               unsigned IDLEIE         : 1;
-               unsigned STALLIE        : 1;
-               unsigned SOFIE          : 1;
-               unsigned                : 1;
-       };
-} __UIE_t;
-extern volatile __UIE_t __at (0xF69) UIEbits;
-
-extern __sfr __at (0xF6A) UEIR;
-typedef union {
-       struct {
-               unsigned PIDEF          : 1;
-               unsigned CRC5EF         : 1;
-               unsigned CRC16EF        : 1;
-               unsigned DFN8EF         : 1;
-               unsigned BTOEF          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEF          : 1;
-       };
-} __UEIR_t;
-extern volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-extern __sfr __at (0xF6B) UEIE;
-typedef union {
-       struct {
-               unsigned PIDEE          : 1;
-               unsigned CRC5EE         : 1;
-               unsigned CRC16EE        : 1;
-               unsigned DFN8EE         : 1;
-               unsigned BTOEE          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEE          : 1;
-       };
-} __UEIE_t;
-extern volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-extern __sfr __at (0xF6C) USTAT;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned PPBI           : 1;
-               unsigned DIR            : 1;
-               unsigned ENDP           : 4;
-               unsigned                : 1;
-       };
-} __USTAT_t;
-extern volatile __USTAT_t __at (0xF6C) USTATbits;
-
-extern __sfr __at (0xF6D) UCON;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned SUSPND         : 1;
-               unsigned RESUME         : 1;
-               unsigned USBEN          : 1;
-               unsigned PKTDIS         : 1;
-               unsigned SE0            : 1;
-               unsigned PPBRST         : 1;
-               unsigned                : 1;
-       };
-} __UCON_t;
-extern volatile __UCON_t __at (0xF6D) UCONbits;
-
-extern __sfr __at (0xF6E) UADDR;
-typedef union {
-       struct {
-               unsigned ADDR           : 7;
-               unsigned                : 1;
-       };
-} __UADDR_t;
-extern volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-extern __sfr __at (0xF6F) UCFG;
-typedef union {
-       struct {
-               unsigned PPB            : 2;
-               unsigned FSEN           : 1;
-               unsigned UTRDIS         : 1;
-               unsigned UPUEN          : 1;
-               unsigned                : 1;
-               unsigned UOEMON         : 1;
-               unsigned UTEYE          : 1;
-       };
-} __UCFG_t;
-extern volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-extern __sfr __at (0xF70) UEP0;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP0_t;
-extern volatile __UEP0_t __at (0xF70) UEP0bits;
-
-extern __sfr __at (0xF71) UEP1;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP1_t;
-extern volatile __UEP1_t __at (0xF71) UEP1bits;
-
-extern __sfr __at (0xF72) UEP2;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP2_t;
-extern volatile __UEP2_t __at (0xF72) UEP2bits;
-
-extern __sfr __at (0xF73) UEP3;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP3_t;
-extern volatile __UEP3_t __at (0xF73) UEP3bits;
-
-extern __sfr __at (0xF74) UEP4;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP4_t;
-extern volatile __UEP4_t __at (0xF74) UEP4bits;
-
-extern __sfr __at (0xF75) UEP5;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP5_t;
-extern volatile __UEP5_t __at (0xF75) UEP5bits;
-
-extern __sfr __at (0xF76) UEP6;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP6_t;
-extern volatile __UEP6_t __at (0xF76) UEP6bits;
-
-extern __sfr __at (0xF77) UEP7;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP7_t;
-extern volatile __UEP7_t __at (0xF77) UEP7bits;
-
-extern __sfr __at (0xF78) UEP8;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP8_t;
-extern volatile __UEP8_t __at (0xF78) UEP8bits;
-
-extern __sfr __at (0xF79) UEP9;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP9_t;
-extern volatile __UEP9_t __at (0xF79) UEP9bits;
-
-extern __sfr __at (0xF7A) UEP10;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP10_t;
-extern volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-extern __sfr __at (0xF7B) UEP11;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP11_t;
-extern volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-extern __sfr __at (0xF7C) UEP12;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP12_t;
-extern volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-extern __sfr __at (0xF7D) UEP13;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP13_t;
-extern volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-extern __sfr __at (0xF7E) UEP14;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP14_t;
-extern volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-extern __sfr __at (0xF7F) UEP15;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP15_t;
-extern volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-extern __sfr __at (0xF80) PORTA;
-typedef union {
-       struct {
-               unsigned RA0            : 1;
-               unsigned RA1            : 1;
-               unsigned RA2            : 1;
-               unsigned RA3            : 1;
-               unsigned RA4            : 1;
-               unsigned RA5            : 1;
-               unsigned RA6            : 1;
-               unsigned                : 1;
-       };
-       struct {
-               unsigned RA             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned C1INN          :1;
-               unsigned C2INN          :1;
-               unsigned C2INP          :1;
-               unsigned C1INP          :1;
-               unsigned C1OUT          :1;
-               unsigned C2OUT          :1;
-               unsigned OSC2           :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned AN0            :1;
-               unsigned AN1            :1;
-               unsigned AN2            :1;
-               unsigned AN3            :1;
-               unsigned T0CKI          :1;
-               unsigned AN4            :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTA_t;
-extern volatile __PORTA_t __at (0xF80) PORTAbits;
-
-extern __sfr __at (0xF81) PORTB;
-typedef union {
-       struct {
-               unsigned RB0            : 1;
-               unsigned RB1            : 1;
-               unsigned RB2            : 1;
-               unsigned RB3            : 1;
-               unsigned RB4            : 1;
-               unsigned RB5            : 1;
-               unsigned RB6            : 1;
-               unsigned RB7            : 1;
-       };
-       struct {
-               unsigned RB             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned AN12           :1;
-               unsigned AN10           :1;
-               unsigned AN8            :1;
-               unsigned AN9            :1;
-               unsigned AN11           :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTB_t;
-extern volatile __PORTB_t __at (0xF81) PORTBbits;
-
-extern __sfr __at (0xF82) PORTC;
-typedef union {
-       struct {
-               unsigned RC0            : 1;
-               unsigned RC1            : 1;
-               unsigned RC2            : 1;
-               unsigned                : 1;
-               unsigned RC4            : 1;
-               unsigned RC5            : 1;
-               unsigned RC6            : 1;
-               unsigned RC7            : 1;
-       };
-       struct {
-               unsigned RC             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned T1CKI          :1;
-               unsigned T1OSCI         :1;
-               unsigned ECCPA          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned U1TX           :1;
-               unsigned U1RX           :1;
-       };
-       struct {
-               unsigned T3CKI          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned T1OSCO         :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTC_t;
-extern volatile __PORTC_t __at (0xF82) PORTCbits;
-
-extern __sfr __at (0xF83) PORTD;
-typedef union {
-       struct {
-               unsigned RD0            : 1;
-               unsigned RD1            : 1;
-               unsigned RD2            : 1;
-               unsigned RD3            : 1;
-               unsigned RD4            : 1;
-               unsigned RD5            : 1;
-               unsigned RD6            : 1;
-               unsigned RD7            : 1;
-       };
-       struct {
-               unsigned RD             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned ECCPB          :1;
-               unsigned ECCPC          :1;
-               unsigned ECCPD          :1;
-       };
-} __PORTD_t;
-extern volatile __PORTD_t __at (0xF83) PORTDbits;
-
-extern __sfr __at (0xF84) PORTE;
-typedef union {
-       struct {
-               unsigned RE0            : 1;
-               unsigned RE1            : 1;
-               unsigned RE2            : 1;
-               unsigned RE3            : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned RDPU           : 1;
-       };
-       struct {
-               unsigned RE             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned AN5            :1;
-               unsigned AN6            :1;
-               unsigned AN7            :1;
-               unsigned MCLR           :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTE_t;
-extern volatile __PORTE_t __at (0xF84) PORTEbits;
-
-extern __sfr __at (0xF89) LATA;
-typedef union {
-       struct {
-               unsigned LATA0          : 1;
-               unsigned LATA1          : 1;
-               unsigned LATA2          : 1;
-               unsigned LATA3          : 1;
-               unsigned LATA4          : 1;
-               unsigned LATA5          : 1;
-               unsigned LATA6          : 1;
-               unsigned                : 1;
-       };
-} __LATA_t;
-extern volatile __LATA_t __at (0xF89) LATAbits;
-
-extern __sfr __at (0xF8A) LATB;
-typedef union {
-       struct {
-               unsigned LATB0          : 1;
-               unsigned LATB1          : 1;
-               unsigned LATB2          : 1;
-               unsigned LATB3          : 1;
-               unsigned LATB4          : 1;
-               unsigned LATB5          : 1;
-               unsigned LATB6          : 1;
-               unsigned LATB7          : 1;
-       };
-} __LATB_t;
-extern volatile __LATB_t __at (0xF8A) LATBbits;
-
-extern __sfr __at (0xF8B) LATC;
-typedef union {
-       struct {
-               unsigned LATC0          : 1;
-               unsigned LATC1          : 1;
-               unsigned LATC2          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned LATC6          : 1;
-               unsigned LATC7          : 1;
-       };
-} __LATC_t;
-extern volatile __LATC_t __at (0xF8B) LATCbits;
-
-extern __sfr __at (0xF8C) LATD;
-typedef union {
-       struct {
-               unsigned LATD0          : 1;
-               unsigned LATD1          : 1;
-               unsigned LATD2          : 1;
-               unsigned LATD3          : 1;
-               unsigned LATD4          : 1;
-               unsigned LATD5          : 1;
-               unsigned LATD6          : 1;
-               unsigned LATD7          : 1;
-       };
-} __LATD_t;
-extern volatile __LATD_t __at (0xF8C) LATDbits;
-
-extern __sfr __at (0xF8D) LATE;
-typedef union {
-       struct {
-               unsigned LATE0          : 1;
-               unsigned LATE1          : 1;
-               unsigned LATE2          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __LATE_t;
-extern volatile __LATE_t __at (0xF8D) LATEbits;
-
-extern __sfr __at (0xF92) TRISA;
-typedef union {
-       struct {
-               unsigned TRISA0         : 1;
-               unsigned TRISA1         : 1;
-               unsigned TRISA2         : 1;
-               unsigned TRISA3         : 1;
-               unsigned TRISA4         : 1;
-               unsigned TRISA5         : 1;
-               unsigned TRISA6         : 1;
-               unsigned                : 1;
-       };
-} __TRISA_t;
-extern volatile __TRISA_t __at (0xF92) TRISAbits;
-
-extern __sfr __at (0xF93) TRISB;
-typedef union {
-       struct {
-               unsigned TRISB0         : 1;
-               unsigned TRISB1         : 1;
-               unsigned TRISB2         : 1;
-               unsigned TRISB3         : 1;
-               unsigned TRISB4         : 1;
-               unsigned TRISB5         : 1;
-               unsigned TRISB6         : 1;
-               unsigned TRISB7         : 1;
-       };
-} __TRISB_t;
-extern volatile __TRISB_t __at (0xF93) TRISBbits;
-
-extern __sfr __at (0xF94) TRISC;
-typedef union {
-       struct {
-               unsigned TRISC0         : 1;
-               unsigned TRISC1         : 1;
-               unsigned TRISC2         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned TRISC6         : 1;
-               unsigned TRISC7         : 1;
-       };
-} __TRISC_t;
-extern volatile __TRISC_t __at (0xF94) TRISCbits;
-
-extern __sfr __at (0xF95) TRISD;
-typedef union {
-       struct {
-               unsigned TRISD0         : 1;
-               unsigned TRISD1         : 1;
-               unsigned TRISD2         : 1;
-               unsigned TRISD3         : 1;
-               unsigned TRISD4         : 1;
-               unsigned TRISD5         : 1;
-               unsigned TRISD6         : 1;
-               unsigned TRISD7         : 1;
-       };
-} __TRISD_t;
-extern volatile __TRISD_t __at (0xF95) TRISDbits;
-
-extern __sfr __at (0xF96) TRISE;
-typedef union {
-       struct {
-               unsigned TRISE0         : 1;
-               unsigned TRISE1         : 1;
-               unsigned TRISE2         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TRISE_t;
-extern volatile __TRISE_t __at (0xF96) TRISEbits;
-
-extern __sfr __at (0xF9B) OSCTUNE;
-typedef union {
-       struct {
-               unsigned TUN            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned HF256DIV       : 1;
-       };
-} __OSCTUNE_t;
-extern volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-extern __sfr __at (0xF9D) PIE1;
-typedef union {
-       struct {
-               unsigned TMR1IE         : 1;
-               unsigned TMR2IE         : 1;
-               unsigned CCP1IE         : 1;
-               unsigned SSPIE          : 1;
-               unsigned TXIE           : 1;
-               unsigned RCIE           : 1;
-               unsigned ADIE           : 1;
-               unsigned SPPIE          : 1;
-       };
-} __PIE1_t;
-extern volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-extern __sfr __at (0xF9E) PIR1;
-typedef union {
-       struct {
-               unsigned TMR1IF         : 1;
-               unsigned TMR2IF         : 1;
-               unsigned CCP1IF         : 1;
-               unsigned SSPIF          : 1;
-               unsigned TXIF           : 1;
-               unsigned RCIF           : 1;
-               unsigned ADIF           : 1;
-               unsigned SPPIF          : 1;
-       };
-} __PIR1_t;
-extern volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-extern __sfr __at (0xF9F) IPR1;
-typedef union {
-       struct {
-               unsigned TMR1IP         : 1;
-               unsigned TMR2IP         : 1;
-               unsigned CCP1IP         : 1;
-               unsigned SSPIP          : 1;
-               unsigned TXIP           : 1;
-               unsigned RCIP           : 1;
-               unsigned ADIP           : 1;
-               unsigned SPPIP          : 1;
-       };
-} __IPR1_t;
-extern volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-extern __sfr __at (0xFA0) PIE2;
-typedef union {
-       struct {
-               unsigned CCP2IE         : 1;
-               unsigned TMR3IE         : 1;
-               unsigned HLVDIE         : 1;
-               unsigned BCLIE          : 1;
-               unsigned EEIE           : 1;
-               unsigned USBIE          : 1;
-               unsigned CMIE           : 1;
-               unsigned OSCFIE         : 1;
-       };
-} __PIE2_t;
-extern volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-extern __sfr __at (0xFA1) PIR2;
-typedef union {
-       struct {
-               unsigned CCP2IF         : 1;
-               unsigned TMR3IF         : 1;
-               unsigned HLVDIF         : 1;
-               unsigned BCLIF          : 1;
-               unsigned EEIF           : 1;
-               unsigned USBIF          : 1;
-               unsigned CMIF           : 1;
-               unsigned OSCFIF         : 1;
-       };
-} __PIR2_t;
-extern volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-extern __sfr __at (0xFA2) IPR2;
-typedef union {
-       struct {
-               unsigned CCP2IP         : 1;
-               unsigned TMR3IP         : 1;
-               unsigned HLVDIP         : 1;
-               unsigned BCLIP          : 1;
-               unsigned EEIP           : 1;
-               unsigned USBIP          : 1;
-               unsigned CMIP           : 1;
-               unsigned OSCFIP         : 1;
-       };
-} __IPR2_t;
-extern volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-extern __sfr __at (0xFA6) EECON1;
-typedef union {
-       struct {
-               unsigned RD             : 1;
-               unsigned WR             : 1;
-               unsigned WREN           : 1;
-               unsigned WRERR          : 1;
-               unsigned FREE           : 1;
-               unsigned                : 1;
-               unsigned CFGS           : 1;
-               unsigned EEPGD          : 1;
-       };
-} __EECON1_t;
-extern volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-extern __sfr __at (0xFA7) EECON2;
-
-extern __sfr __at (0xFA8) EEDATA;
-
-extern __sfr __at (0xFA9) EEADR;
-
-extern __sfr __at (0xFAB) RCSTA;
-typedef union {
-       struct {
-               unsigned RX9D           : 1;
-               unsigned OERR           : 1;
-               unsigned FERR           : 1;
-               unsigned ADDEN          : 1;
-               unsigned CREN           : 1;
-               unsigned SREN           : 1;
-               unsigned RX9            : 1;
-               unsigned SPEN           : 1;
-       };
-} __RCSTA_t;
-extern volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-extern __sfr __at (0xFAC) TXSTA;
-typedef union {
-       struct {
-               unsigned TX9D           : 1;
-               unsigned TRMT           : 1;
-               unsigned BRGH           : 1;
-               unsigned SENDB          : 1;
-               unsigned SYNC           : 1;
-               unsigned TXEN           : 1;
-               unsigned TX9            : 1;
-               unsigned CSRC           : 1;
-       };
-} __TXSTA_t;
-extern volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-extern __sfr __at (0xFAD) TXREG;
-
-extern __sfr __at (0xFAE) RCREG;
-
-extern __sfr __at (0xFAF) SPBRG;
-
-extern __sfr __at (0xFB0) SPBRGH;
-
-extern __sfr __at (0xFB1) T3CON;
-typedef union {
-       struct {
-               unsigned TMR3ON         : 1;
-               unsigned TMR3CS         : 1;
-               unsigned NOT_T3SYNC     : 1;
-               unsigned T3CCP1         : 1;
-               unsigned T3CKPS0        : 1;
-               unsigned T3CKPS1        : 1;
-               unsigned T3CCP2         : 1;
-               unsigned RD16           : 1;
-       };
-} __T3CON_t;
-extern volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-extern __sfr __at (0xFB2) TMR3L;
-
-extern __sfr __at (0xFB3) TMR3H;
-
-extern __sfr __at (0xFB4) CMCON;
-typedef union {
-       struct {
-               unsigned CM0            : 1;
-               unsigned CM1            : 1;
-               unsigned CM2            : 1;
-               unsigned CIS            : 1;
-               unsigned C1INV          : 1;
-               unsigned C2INV          : 1;
-               unsigned C1OUT          : 1;
-               unsigned C2OUT          : 1;
-       };
-} __CMCON_t;
-extern volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-extern __sfr __at (0xFB5) CVRCON;
-typedef union {
-       struct {
-               unsigned CVR0           : 1;
-               unsigned CVR1           : 1;
-               unsigned CVR2           : 1;
-               unsigned CVR3           : 1;
-               unsigned CVRSS          : 1;
-               unsigned CVRR           : 1;
-               unsigned CVROE          : 1;
-               unsigned CVREN          : 1;
-       };
-} __CVRCON_t;
-extern volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-extern __sfr __at (0xFB6) ECCP1AS;
-typedef union {
-       struct {
-               unsigned PSSBD0         : 1;
-               unsigned PSSBD1         : 1;
-               unsigned PSSAC0         : 1;
-               unsigned PSSAC1         : 1;
-               unsigned ECCPAS0        : 1;
-               unsigned ECCPAS1        : 1;
-               unsigned ECCPAS2        : 1;
-               unsigned ECCPASE        : 1;
-       };
-} __ECCP1AS_t;
-extern volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-extern __sfr __at (0xFB7) ECCP1DEL;
-typedef union {
-       struct {
-               unsigned PDC            : 7;
-               unsigned PRSEN          : 1;
-       };
-} __ECCP1DEL_t;
-extern volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-extern __sfr __at (0xFB8) BAUDCON;
-typedef union {
-       struct {
-               unsigned ABDEN          : 1;
-               unsigned WUE            : 1;
-               unsigned                : 1;
-               unsigned BRG16          : 1;
-               unsigned SCKP           : 1;
-               unsigned                : 1;
-               unsigned RCMT           : 1;
-               unsigned ABDOVF         : 1;
-       };
-} __BAUDCON_t;
-extern volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-extern __sfr __at (0xFBA) CCP2CON;
-typedef union {
-       struct {
-               unsigned CCP2M0         : 1;
-               unsigned CCP2M1         : 1;
-               unsigned CCP2M2         : 1;
-               unsigned CCP2M3         : 1;
-               unsigned DC2B0          : 1;
-               unsigned DC2B1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __CCP2CON_t;
-extern volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-extern __sfr __at (0xFBB) CCPR2L;
-
-extern __sfr __at (0xFBC) CCPR2H;
-
-extern __sfr __at (0xFBD) CCP1CON;
-typedef union {
-       struct {
-               unsigned CCP1M0         : 1;
-               unsigned CCP1M1         : 1;
-               unsigned CCP1M2         : 1;
-               unsigned CCP1M3         : 1;
-               unsigned DC1B0          : 1;
-               unsigned DC1B1          : 1;
-               unsigned P1M0           : 1;
-               unsigned P1M1           : 1;
-       };
-} __CCP1CON_t;
-extern volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-extern __sfr __at (0xFBE) CCPR1L;
-
-extern __sfr __at (0xFBF) CCPR1H;
-
-extern __sfr __at (0xFC0) ADCON2;
-typedef union {
-       struct {
-               unsigned ADCS0          : 1;
-               unsigned ADCS1          : 1;
-               unsigned ADCS2          : 1;
-               unsigned ACQT0          : 1;
-               unsigned ACQT1          : 1;
-               unsigned ACQT2          : 1;
-               unsigned                : 1;
-               unsigned ADFM           : 1;
-       };
-} __ADCON2_t;
-extern volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-extern __sfr __at (0xFC1) ADCON1;
-typedef union {
-       struct {
-               unsigned PCFG0          : 1;
-               unsigned PCFG1          : 1;
-               unsigned PCFG2          : 1;
-               unsigned PCFG3          : 1;
-               unsigned VCFG0          : 1;
-               unsigned VCFG1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON1_t;
-extern volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-extern __sfr __at (0xFC2) ADCON0;
-typedef union {
-       struct {
-               unsigned ADON           : 1;
-               unsigned GO             : 1;
-               unsigned CHS0           : 1;
-               unsigned CHS1           : 1;
-               unsigned CHS2           : 1;
-               unsigned CHS3           : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON0_t;
-extern volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-extern __sfr __at (0xFC3) ADRESL;
-
-extern __sfr __at (0xFC4) ADRESH;
-
-extern __sfr __at (0xFC5) SSPCON2;
-typedef union {
-       struct {
-               unsigned SEN            : 1;
-               unsigned RSEN           : 1;
-               unsigned PEN            : 1;
-               unsigned RCEN           : 1;
-               unsigned ACKEN          : 1;
-               unsigned ACKDT          : 1;
-               unsigned ACKSTAT        : 1;
-               unsigned GCEN           : 1;
-       };
-} __SSPCON2_t;
-extern volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-extern __sfr __at (0xFC6) SSPCON1;
-typedef union {
-       struct {
-               unsigned SSPM0          : 1;
-               unsigned SSPM1          : 1;
-               unsigned SSPM2          : 1;
-               unsigned SSPM3          : 1;
-               unsigned CKP            : 1;
-               unsigned SSPEN          : 1;
-               unsigned SSPOV          : 1;
-               unsigned WCOL           : 1;
-       };
-} __SSPCON1_t;
-extern volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-extern __sfr __at (0xFC7) SSPSTAT;
-typedef union {
-       struct {
-               unsigned BF             : 1;
-               unsigned UA             : 1;
-               unsigned R_W            : 1;
-               unsigned S              : 1;
-               unsigned P              : 1;
-               unsigned D_A            : 1;
-               unsigned CKE            : 1;
-               unsigned SMP            : 1;
-       };
-} __SSPSTAT_t;
-extern volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-extern __sfr __at (0xFC8) SSPADD;
-
-extern __sfr __at (0xFC9) SSPBUF;
-
-extern __sfr __at (0xFCA) T2CON;
-typedef union {
-       struct {
-               unsigned T2CKPS0        : 1;
-               unsigned T2CKPS1        : 1;
-               unsigned TMR2ON         : 1;
-               unsigned TOUTPS0        : 1;
-               unsigned TOUTPS1        : 1;
-               unsigned TOUTPS2        : 1;
-               unsigned TOUTPS3        : 1;
-               unsigned                : 1;
-       };
-} __T2CON_t;
-extern volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-extern __sfr __at (0xFCB) PR2;
-
-extern __sfr __at (0xFCC) TMR2;
-
-extern __sfr __at (0xFCD) T1CON;
-typedef union {
-       struct {
-               unsigned TMR1ON         : 1;
-               unsigned TMR1CS         : 1;
-               unsigned NOT_T1SYNC     : 1;
-               unsigned T1OSCEN        : 1;
-               unsigned T1CKPS0        : 1;
-               unsigned T1CKPS1        : 1;
-               unsigned T1RUN          : 1;
-               unsigned RD16           : 1;
-       };
-} __T1CON_t;
-extern volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-extern __sfr __at (0xFCE) TMR1L;
-
-extern __sfr __at (0xFCF) TMR1H;
-
-extern __sfr __at (0xFD0) RCON;
-typedef union {
-       struct {
-               unsigned BOR            : 1;
-               unsigned POR            : 1;
-               unsigned PD             : 1;
-               unsigned TO             : 1;
-               unsigned RI             : 1;
-               unsigned                : 1;
-               unsigned SBOREN         : 1;
-               unsigned IPEN           : 1;
-       };
-} __RCON_t;
-extern volatile __RCON_t __at (0xFD0) RCONbits;
-
-extern __sfr __at (0xFD1) WDTCON;
-typedef union {
-       struct {
-               unsigned SWDTEN         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __WDTCON_t;
-extern volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-extern __sfr __at (0xFD2) HLVDCON;
-typedef union {
-       struct {
-               unsigned HLVDL0         : 1;
-               unsigned HLVDL1         : 1;
-               unsigned HLVDL2         : 1;
-               unsigned HLVDL3         : 1;
-               unsigned HLVDEN         : 1;
-               unsigned IRVST          : 1;
-               unsigned                : 1;
-               unsigned VDIRMAG        : 1;
-       };
-} __HLVDCON_t;
-extern volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-extern __sfr __at (0xFD3) OSCCON;
-typedef union {
-       struct {
-               unsigned SCS            : 2;
-               unsigned FLTS           : 1;
-               unsigned OSTS           : 1;
-               unsigned IRCF           : 3;
-               unsigned IDLEN          : 1;
-       };
-} __OSCCON_t;
-extern volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-extern __sfr __at (0xFD5) T0CON;
-typedef union {
-       struct {
-               unsigned T0PS0          : 1;
-               unsigned T0PS1          : 1;
-               unsigned T0PS2          : 1;
-               unsigned PSA            : 1;
-               unsigned T0SE           : 1;
-               unsigned T0CS           : 1;
-               unsigned T08BIT         : 1;
-               unsigned TMR0ON         : 1;
-       };
-} __T0CON_t;
-extern volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-extern __sfr __at (0xFD6) TMR0L;
-
-extern __sfr __at (0xFD7) TMR0H;
-
-extern __sfr __at (0xFD8) STATUS;
-typedef union {
-       struct {
-               unsigned C              : 1;
-               unsigned DC             : 1;
-               unsigned Z              : 1;
-               unsigned OV             : 1;
-               unsigned N              : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __STATUS_t;
-extern volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-extern __sfr __at (0xFD9) FSR2L;
-
-extern __sfr __at (0xFDA) FSR2H;
-typedef union {
-       struct {
-               unsigned FSR2H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR2H_t;
-extern volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-extern __sfr __at (0xFDB) PLUSW2;
-
-extern __sfr __at (0xFDC) PREINC2;
-
-extern __sfr __at (0xFDD) POSTDEC2;
-
-extern __sfr __at (0xFDE) POSTINC2;
-
-extern __sfr __at (0xFDF) INDF2;
-
-extern __sfr __at (0xFE0) BSR;
-typedef union {
-       struct {
-               unsigned BSR            : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __BSR_t;
-extern volatile __BSR_t __at (0xFE0) BSRbits;
-
-extern __sfr __at (0xFE1) FSR1L;
-
-extern __sfr __at (0xFE2) FSR1H;
-typedef union {
-       struct {
-               unsigned FSR1H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR1H_t;
-extern volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-extern __sfr __at (0xFE3) PLUSW1;
-
-extern __sfr __at (0xFE4) PREINC1;
-
-extern __sfr __at (0xFE5) POSTDEC1;
-
-extern __sfr __at (0xFE6) POSTINC1;
-
-extern __sfr __at (0xFE7) INDF1;
-
-extern __sfr __at (0xFE8) WREG;
-
-extern __sfr __at (0xFE9) FSR0L;
-
-extern __sfr __at (0xFEA) FSR0H;
-typedef union {
-       struct {
-               unsigned FSR0H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR0H_t;
-extern volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-extern __sfr __at (0xFEB) PLUSW0;
-
-extern __sfr __at (0xFEC) PREINC0;
-
-extern __sfr __at (0xFED) POSTDEC0;
-
-extern __sfr __at (0xFEE) POSTINC0;
-
-extern __sfr __at (0xFEF) INDF0;
-
-extern __sfr __at (0xFF0) INTCON3;
-typedef union {
-       struct {
-               unsigned INT1IF         : 1;
-               unsigned INT2IF         : 1;
-               unsigned                : 1;
-               unsigned INT1IE         : 1;
-               unsigned INT2IE         : 1;
-               unsigned                : 1;
-               unsigned INT1IP         : 1;
-               unsigned INT2IP         : 1;
-       };
-} __INTCON3_t;
-extern volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-extern __sfr __at (0xFF1) INTCON2;
-typedef union {
-       struct {
-               unsigned RBIP           : 1;
-               unsigned                : 1;
-               unsigned TMR0IP         : 1;
-               unsigned                : 1;
-               unsigned INTEDG2        : 1;
-               unsigned INTEDG1        : 1;
-               unsigned INTEDG0        : 1;
-               unsigned RBPU           : 1;
-       };
-} __INTCON2_t;
-extern volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-extern __sfr __at (0xFF2) INTCON;
-typedef union {
-       struct {
-               unsigned RBIF           : 1;
-               unsigned INT0IF         : 1;
-               unsigned TMR0IF         : 1;
-               unsigned RBIE           : 1;
-               unsigned INT0IE         : 1;
-               unsigned TMR0IE         : 1;
-               unsigned PEIE           : 1;
-               unsigned GIE            : 1;
-       };
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned GIEL           : 1;
-               unsigned GIEH           : 1;
-       };
-} __INTCON_t;
-extern volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-extern __sfr __at (0xFF3) PRODL;
-
-extern __sfr __at (0xFF4) PRODH;
-
-extern __sfr __at (0xFF5) TABLAT;
-
-extern __sfr __at (0xFF6) TBLPTRL;
-
-extern __sfr __at (0xFF7) TBLPTRH;
-
-extern __sfr __at (0xFF8) TBLPTRU;
-typedef union {
-       struct {
-               unsigned TBLPTRU        : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TBLPTRU_t;
-extern volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-extern __sfr __at (0xFF9) PCL;
-
-extern __sfr __at (0xFFA) PCLATH;
-typedef union {
-       struct {
-               unsigned PCH            : 8;
-       };
-} __PCLATH_t;
-extern volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-extern __sfr __at (0xFFB) PCLATU;
-typedef union {
-       struct {
-               unsigned PCU            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __PCLATU_t;
-extern volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-extern __sfr __at (0xFFC) STKPTR;
-typedef union {
-       struct {
-               unsigned STKPTR         : 5;
-               unsigned                : 1;
-               unsigned STKUNF         : 1;
-               unsigned STKFUL         : 1;
-       };
-} __STKPTR_t;
-extern volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-extern __sfr __at (0xFFD) TOSL;
-
-extern __sfr __at (0xFFE) TOSH;
-
-extern __sfr __at (0xFFF) TOSU;
-typedef union {
-       struct {
-               unsigned TOSU           : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TOSU_t;
-extern volatile __TOSU_t __at (0xFFF) TOSUbits;
-
-/* Configuration register locations */
-#define        __CONFIG1L      0x300000
-#define        __CONFIG1H      0x300001
-#define        __CONFIG2L      0x300002
-#define        __CONFIG2H      0x300003
-#define        __CONFIG3H      0x300005
-#define        __CONFIG4L      0x300006
-#define        __CONFIG5L      0x300008
-#define        __CONFIG5H      0x300009
-#define        __CONFIG6L      0x30000A
-#define        __CONFIG6H      0x30000B
-#define        __CONFIG7L      0x30000C
-#define        __CONFIG7H      0x30000D
-
-
-/* Full-Speed USB Clock Source Selection 1L options */
-#define        _USBPLL_CLOCK_SRC_FROM_96MHZ_PLL_2_1L           0xFF    /* Clock src from 96MHz PLL/2 */
-#define        _USBPLL_CLOCK_SRC_FROM_OSC1_OSC2_1L             0xDF    /* Clock src from OSC1/OSC2 */
-
-/* CPU System Clock Postscaler 1L options */
-#define        _CPUDIV__OSC1_OSC2_SRC___4__96MHZ_PLL_SRC___6__1L       0xFF    /* [OSC1/OSC2 Src: /4][96MHz PLL Src: /6] */
-#define        _CPUDIV__OSC1_OSC2_SRC___3__96MHZ_PLL_SRC___4__1L       0xF7    /* [OSC1/OSC2 Src: /3][96MHz PLL Src: /4] */
-#define        _CPUDIV__OSC1_OSC2_SRC___2__96MHZ_PLL_SRC___3__1L       0xEF    /* [OSC1/OSC2 Src: /2][96MHz PLL Src: /3] */
-#define        _CPUDIV__OSC1_OSC2_SRC___1__96MHZ_PLL_SRC___2__1L       0xE7    /* [OSC1/OSC2 Src: /1][96MHz PLL Src: /2] */
-
-/* 96MHz PLL Prescaler 1L options */
-#define        _PLLDIV_DIVIDE_BY_12__48MHZ_INPUT__1L           0xFF    /* Divide by 12 (48MHz input) */
-#define        _PLLDIV_DIVIDE_BY_10__40MHZ_INPUT__1L           0xFE    /* Divide by 10 (40MHz input) */
-#define        _PLLDIV_DIVIDE_BY_6__24MHZ_INPUT__1L            0xFD    /* Divide by 6 (24MHz input) */
-#define        _PLLDIV_DIVIDE_BY_5__20MHZ_INPUT__1L            0xFC    /* Divide by 5 (20MHz input) */
-#define        _PLLDIV_DIVIDE_BY_4__16MHZ_INPUT__1L            0xFB    /* Divide by 4 (16MHz input) */
-#define        _PLLDIV_DIVIDE_BY_3__12MHZ_INPUT__1L            0xFA    /* Divide by 3 (12MHz input) */
-#define        _PLLDIV_DIVIDE_BY_2__8MHZ_INPUT__1L             0xF9    /* Divide by 2 (8MHz input) */
-#define        _PLLDIV_NO_DIVIDE__4MHZ_INPUT__1L               0xF8    /* No Divide (4MHz input) */
-
-
-/* Oscillator 1H options */
-#define        _OSC_HS__HS_PLL__USB_HS_1H                      0xFE    /* HS: HS+PLL, USB-HS */
-#define        _OSC_HS__USB_HS_1H                              0xFC    /* HS: USB-HS */
-#define        _OSC_INTOSC__USB_HS_1H                          0xFB    /* INTOSC: USB-HS */
-#define        _OSC_INTOSC__USB_XT_1H                          0xFA    /* INTOSC: USB-XT */
-#define        _OSC_INTOSC__INTOSC_CLK0_RA6___USB_EC_1H        0xF9    /* INTOSC: INTOSC+CLK0{RA6}, USB-EC */
-#define        _OSC_INTOSC__INTOSC_RA6__USB_EC_1H              0xF8    /* INTOSC: INTOSC+RA6, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_CLKO_RA6___USB_EC_1H    0xF7    /* EC: EC+PLL, EC+PLL+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_RA6__USB_EC_1H          0xF6    /* EC: EC+PLL, EC+PLL+RA6, USB-EC */
-#define        _OSC_EC__EC_CLKO_RA6___USB_EC_1H                0xF5    /* EC: EC+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_RA6__USB_EC_1H                      0xF4    /* EC: EC+RA6, USB-EC */
-#define        _OSC_XT__XT_PLL__USB_XT_1H                      0xF2    /* XT: XT+PLL, USB-XT */
-#define        _OSC_XT__USB_XT_1H                              0xF0    /* XT: USB-XT */
-
-/* Fail-Safe Clock Monitor Enable 1H options */
-#define        _FCMEN_OFF_1H                                   0xBF    /* Disabled */
-#define        _FCMEN_ON_1H                                    0xFF    /* Enabled */
-
-/* Internal External Switch Over Mode 1H options */
-#define        _IESO_OFF_1H                                    0x7F    /* Disabled */
-#define        _IESO_ON_1H                                     0xFF    /* Enabled */
-
-
-/* USB Voltage Regulator 2L options */
-#define        _VREGEN_ON_2L                                   0xFF    /* Enabled */
-#define        _VREGEN_OFF_2L                                  0xDF    /* Disabled */
-
-/* Power Up Timer 2L options */
-#define        _PUT_OFF_2L                                     0xFF    /* Disabled */
-#define        _PUT_ON_2L                                      0xFE    /* Enabled */
-
-/* Brown Out Detect 2L options */
-#define        _BODEN_ON_2L                                    0xFF    /* Enabled in hardware, SBOREN disabled */
-#define        _BODEN_ON_WHILE_ACTIVE_2L                       0xFD    /* Enabled while active,disabled in SLEEP,SBOREN disabled */
-#define        _BODEN_CONTROLLED_WITH_SBOREN_BIT_2L            0xFB    /* Controlled with SBOREN bit */
-#define        _BODEN_OFF_2L                                   0xF9    /* Disabled in hardware, SBOREN disabled */
-
-/* Brown Out Voltage 2L options */
-#define        _BODENV_2_0V_2L                                 0xFF    /* 2.0V */
-#define        _BODENV_2_7V_2L                                 0xF7    /* 2.7V */
-#define        _BODENV_4_2V_2L                                 0xEF    /* 4.2V */
-#define        _BODENV_4_5V_2L                                 0xE7    /* 4.5V */
-
-
-/* Watchdog Timer 2H options */
-#define        _WDT_ON_2H                                      0xFF    /* Enabled */
-#define        _WDT_DISABLED_CONTROLLED_2H                     0xFE    /* Disabled-Controlled by SWDTEN bit */
-
-/* Watchdog Postscaler 2H options */
-#define        _WDTPS_1_32768_2H                               0xFF    /* 1:32768 */
-#define        _WDTPS_1_16384_2H                               0xFD    /* 1:16384 */
-#define        _WDTPS_1_8192_2H                                0xFB    /* 1:8192 */
-#define        _WDTPS_1_4096_2H                                0xF9    /* 1:4096 */
-#define        _WDTPS_1_2048_2H                                0xF7    /* 1:2048 */
-#define        _WDTPS_1_1024_2H                                0xF5    /* 1:1024 */
-#define        _WDTPS_1_512_2H                                 0xF3    /* 1:512 */
-#define        _WDTPS_1_256_2H                                 0xF1    /* 1:256 */
-#define        _WDTPS_1_128_2H                                 0xEF    /* 1:128 */
-#define        _WDTPS_1_64_2H                                  0xED    /* 1:64 */
-#define        _WDTPS_1_32_2H                                  0xEB    /* 1:32 */
-#define        _WDTPS_1_16_2H                                  0xE9    /* 1:16 */
-#define        _WDTPS_1_8_2H                                   0xE7    /* 1:8 */
-#define        _WDTPS_1_4_2H                                   0xE5    /* 1:4 */
-#define        _WDTPS_1_2_2H                                   0xE3    /* 1:2 */
-#define        _WDTPS_1_1_2H                                   0xE1    /* 1:1 */
-
-
-/* CCP2 Mux 3H options */
-#define        _CCP2MUX_RC1_3H                                 0xFF    /* RC1 */
-#define        _CCP2MUX_RB3_3H                                 0xFE    /* RB3 */
-
-/* PortB A/D Enable 3H options */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_ANALOG_INPUTS_ON_RESET_3H      0xFF    /* PORTB<4:0> configured as analog inputs on RESET */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_DIGITAL_I_O_ON_RESET_3H        0xFD    /* PORTB<4:0> configured as digital I/O on RESET */
-
-/* Low Power Timer1 Osc enable 3H options */
-#define        _LPT1OSC_ON_3H                                  0xFF    /* Enabled */
-#define        _LPT1OSC_OFF_3H                                 0xFB    /* Disabled */
-
-/* Master Clear Enable 3H options */
-#define        _MCLRE_MCLR_ON_RE3_OFF_3H                       0xFF    /* MCLR Enabled,RE3 Disabled */
-#define        _MCLRE_MCLR_OFF_RE3_ON_3H                       0x7F    /* MCLR Disabled,RE3 Enabled */
-
-
-/* Stack Overflow Reset 4L options */
-#define        _STVR_ON_4L                                     0xFF    /* Enabled */
-#define        _STVR_OFF_4L                                    0xFE    /* Disabled */
-
-/* Low Voltage Program 4L options */
-#define        _LVP_ON_4L                                      0xFF    /* Enabled */
-#define        _LVP_OFF_4L                                     0xFB    /* Disabled */
-
-/* Dedicated In-Circuit Port {ICD/ICSP} 4L options */
-#define        _ENICPORT_ON_4L                                 0xFF    /* Enabled */
-#define        _ENICPORT_OFF_4L                                0xDF    /* Disabled */
-
-/* Extended CPU Enable 4L options */
-#define        _ENHCPU_ON_4L                                   0xFF    /* Enabled */
-#define        _ENHCPU_OFF_4L                                  0xBF    /* Disabled */
-
-/* Background Debug 4L options */
-#define        _BACKBUG_OFF_4L                                 0xFF    /* Disabled */
-#define        _BACKBUG_ON_4L                                  0x7F    /* Enabled */
-
-
-/* Code Protect 00800-01FFF 5L options */
-#define        _CP_0_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_0_ON_5L                                     0xFE    /* Enabled */
-
-/* Code Protect 02000-03FFF 5L options */
-#define        _CP_1_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_1_ON_5L                                     0xFD    /* Enabled */
-
-/* Code Protect 04000-05FFF 5L options */
-#define        _CP_2_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_2_ON_5L                                     0xFB    /* Enabled */
-
-
-/* Data EE Read Protect 5H options */
-#define        _CPD_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPD_ON_5H                                      0x7F    /* Enabled */
-
-/* Code Protect Boot 5H options */
-#define        _CPB_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPB_ON_5H                                      0xBF    /* Enabled */
-
-
-/* Table Write Protect 00800-01FFF 6L options */
-#define        _WRT_0_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_0_ON_6L                                    0xFE    /* Enabled */
-
-/* Table Write Protect 02000-03FFF 6L options */
-#define        _WRT_1_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_1_ON_6L                                    0xFD    /* Enabled */
-
-/* Table Write Protect 04000-05FFF 6L options */
-#define        _WRT_2_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_2_ON_6L                                    0xFB    /* Enabled */
-
-
-/* Data EE Write Protect 6H options */
-#define        _WRTD_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTD_ON_6H                                     0x7F    /* Enabled */
-
-/* Table Write Protect Boot 6H options */
-#define        _WRTB_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTB_ON_6H                                     0xBF    /* Enabled */
-
-/* Config. Write Protect 6H options */
-#define        _WRTC_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTC_ON_6H                                     0xDF    /* Enabled */
-
-
-/* Table Read Protect 00800-01FFF 7L options */
-#define        _EBTR_0_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_0_ON_7L                                   0xFE    /* Enabled */
-
-/* Table Read Protect 02000-03FFF 7L options */
-#define        _EBTR_1_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_1_ON_7L                                   0xFD    /* Enabled */
-
-/* Table Read Protect 04000-05FFF 7L options */
-#define        _EBTR_2_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_2_ON_7L                                   0xFB    /* Enabled */
-
-
-/* Table Read Protect Boot 7H options */
-#define        _EBTRB_OFF_7H                                   0xFF    /* Disabled */
-#define        _EBTRB_ON_7H                                    0xBF    /* Enabled */
-
-
-
-/* Location of User ID words */
-#define        __IDLOC0        0x200000
-#define        __IDLOC1        0x200001
-#define        __IDLOC2        0x200002
-#define        __IDLOC3        0x200003
-#define        __IDLOC4        0x200004
-#define        __IDLOC5        0x200005
-#define        __IDLOC6        0x200006
-#define        __IDLOC7        0x200007
-
-#endif // __PIC18F4455__
index dee3b34c01ff2cb6167083949eff06a13ca10406..028f65eb938dbe4beeb631246d737fe694f35eff 100644 (file)
 /* 
  * pic18f4550.h - PIC18F4550 Device Library Header
- * 
- * This file is part of the GNU PIC Library.
- * 
- * July, 2006
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#ifndef __PIC18F4550_H__
-#define __PIC18F4550_H__ 1
+#include "pic18f2455.h"
 
-extern __sfr __at (0xF62) SPPDATA;
-typedef union {
-       struct {
-               unsigned DATA           : 8;
-       };
-} __SPPDATA_t;
-extern volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-extern __sfr __at (0xF63) SPPCFG;
-typedef union {
-       struct {
-               unsigned WS             : 4;
-               unsigned CLK1EN         : 1;
-               unsigned CSEN           : 1;
-               unsigned CLKCFG         : 2;
-       };
-} __SPPCFG_t;
-extern volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-extern __sfr __at (0xF64) SPPEPS;
-typedef union {
-       struct {
-               unsigned ADDR           : 4;
-               unsigned SPPBUSY        : 1;
-               unsigned                : 1;
-               unsigned WRSPP          : 1;
-               unsigned RDSPP          : 1;
-       };
-} __SPPEPS_t;
-extern volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-extern __sfr __at (0xF65) SPPCON;
-typedef union {
-       struct {
-               unsigned SPPEN          : 1;
-               unsigned SPPOWN         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __SPPCON_t;
-extern volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-extern __sfr __at (0xF66) UFRML;
-typedef union {
-       struct {
-               unsigned FRM            : 8;
-       };
-} __UFRML_t;
-extern volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-extern __sfr __at (0xF67) UFRMH;
-typedef union {
-       struct {
-               unsigned FRM            : 3;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UFRMH_t;
-extern volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-extern __sfr __at (0xF68) UIR;
-typedef union {
-       struct {
-               unsigned URSTIF         : 1;
-               unsigned UERRIF         : 1;
-               unsigned ACTIVIF        : 1;
-               unsigned TRNIF          : 1;
-               unsigned IDLEIF         : 1;
-               unsigned STALLIF        : 1;
-               unsigned SOFIF          : 1;
-               unsigned                : 1;
-       };
-} __UIR_t;
-extern volatile __UIR_t __at (0xF68) UIRbits;
-
-extern __sfr __at (0xF69) UIE;
-typedef union {
-       struct {
-               unsigned URSTIE         : 1;
-               unsigned UERRIE         : 1;
-               unsigned ACTIVIE        : 1;
-               unsigned TRNIE          : 1;
-               unsigned IDLEIE         : 1;
-               unsigned STALLIE        : 1;
-               unsigned SOFIE          : 1;
-               unsigned                : 1;
-       };
-} __UIE_t;
-extern volatile __UIE_t __at (0xF69) UIEbits;
-
-extern __sfr __at (0xF6A) UEIR;
-typedef union {
-       struct {
-               unsigned PIDEF          : 1;
-               unsigned CRC5EF         : 1;
-               unsigned CRC16EF        : 1;
-               unsigned DFN8EF         : 1;
-               unsigned BTOEF          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEF          : 1;
-       };
-} __UEIR_t;
-extern volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-extern __sfr __at (0xF6B) UEIE;
-typedef union {
-       struct {
-               unsigned PIDEE          : 1;
-               unsigned CRC5EE         : 1;
-               unsigned CRC16EE        : 1;
-               unsigned DFN8EE         : 1;
-               unsigned BTOEE          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned BTSEE          : 1;
-       };
-} __UEIE_t;
-extern volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-extern __sfr __at (0xF6C) USTAT;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned PPBI           : 1;
-               unsigned DIR            : 1;
-               unsigned ENDP           : 4;
-               unsigned                : 1;
-       };
-} __USTAT_t;
-extern volatile __USTAT_t __at (0xF6C) USTATbits;
-
-extern __sfr __at (0xF6D) UCON;
-typedef union {
-       struct {
-               unsigned                : 1;
-               unsigned SUSPND         : 1;
-               unsigned RESUME         : 1;
-               unsigned USBEN          : 1;
-               unsigned PKTDIS         : 1;
-               unsigned SE0            : 1;
-               unsigned PPBRST         : 1;
-               unsigned                : 1;
-       };
-} __UCON_t;
-extern volatile __UCON_t __at (0xF6D) UCONbits;
-
-extern __sfr __at (0xF6E) UADDR;
-typedef union {
-       struct {
-               unsigned ADDR           : 7;
-               unsigned                : 1;
-       };
-} __UADDR_t;
-extern volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-extern __sfr __at (0xF6F) UCFG;
-typedef union {
-       struct {
-               unsigned PPB            : 2;
-               unsigned FSEN           : 1;
-               unsigned UTRDIS         : 1;
-               unsigned UPUEN          : 1;
-               unsigned                : 1;
-               unsigned UOEMON         : 1;
-               unsigned UTEYE          : 1;
-       };
-} __UCFG_t;
-extern volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-extern __sfr __at (0xF70) UEP0;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP0_t;
-extern volatile __UEP0_t __at (0xF70) UEP0bits;
-
-extern __sfr __at (0xF71) UEP1;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP1_t;
-extern volatile __UEP1_t __at (0xF71) UEP1bits;
-
-extern __sfr __at (0xF72) UEP2;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP2_t;
-extern volatile __UEP2_t __at (0xF72) UEP2bits;
-
-extern __sfr __at (0xF73) UEP3;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP3_t;
-extern volatile __UEP3_t __at (0xF73) UEP3bits;
-
-extern __sfr __at (0xF74) UEP4;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP4_t;
-extern volatile __UEP4_t __at (0xF74) UEP4bits;
-
-extern __sfr __at (0xF75) UEP5;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP5_t;
-extern volatile __UEP5_t __at (0xF75) UEP5bits;
-
-extern __sfr __at (0xF76) UEP6;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP6_t;
-extern volatile __UEP6_t __at (0xF76) UEP6bits;
-
-extern __sfr __at (0xF77) UEP7;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP7_t;
-extern volatile __UEP7_t __at (0xF77) UEP7bits;
-
-extern __sfr __at (0xF78) UEP8;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP8_t;
-extern volatile __UEP8_t __at (0xF78) UEP8bits;
-
-extern __sfr __at (0xF79) UEP9;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP9_t;
-extern volatile __UEP9_t __at (0xF79) UEP9bits;
-
-extern __sfr __at (0xF7A) UEP10;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP10_t;
-extern volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-extern __sfr __at (0xF7B) UEP11;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP11_t;
-extern volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-extern __sfr __at (0xF7C) UEP12;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP12_t;
-extern volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-extern __sfr __at (0xF7D) UEP13;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP13_t;
-extern volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-extern __sfr __at (0xF7E) UEP14;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP14_t;
-extern volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-extern __sfr __at (0xF7F) UEP15;
-typedef union {
-       struct {
-               unsigned EPSTALL        : 1;
-               unsigned EPINEN         : 1;
-               unsigned EPOUTEN        : 1;
-               unsigned EPCONDIS       : 1;
-               unsigned EPHSHK         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __UEP15_t;
-extern volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-extern __sfr __at (0xF80) PORTA;
-typedef union {
-       struct {
-               unsigned RA0            : 1;
-               unsigned RA1            : 1;
-               unsigned RA2            : 1;
-               unsigned RA3            : 1;
-               unsigned RA4            : 1;
-               unsigned RA5            : 1;
-               unsigned RA6            : 1;
-               unsigned                : 1;
-       };
-       struct {
-               unsigned RA             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned C1INN          :1;
-               unsigned C2INN          :1;
-               unsigned C2INP          :1;
-               unsigned C1INP          :1;
-               unsigned C1OUT          :1;
-               unsigned C2OUT          :1;
-               unsigned OSC2           :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned AN0            :1;
-               unsigned AN1            :1;
-               unsigned AN2            :1;
-               unsigned AN3            :1;
-               unsigned T0CKI          :1;
-               unsigned AN4            :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTA_t;
-extern volatile __PORTA_t __at (0xF80) PORTAbits;
-
-extern __sfr __at (0xF81) PORTB;
-typedef union {
-       struct {
-               unsigned RB0            : 1;
-               unsigned RB1            : 1;
-               unsigned RB2            : 1;
-               unsigned RB3            : 1;
-               unsigned RB4            : 1;
-               unsigned RB5            : 1;
-               unsigned RB6            : 1;
-               unsigned RB7            : 1;
-       };
-       struct {
-               unsigned RB             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned AN12           :1;
-               unsigned AN10           :1;
-               unsigned AN8            :1;
-               unsigned AN9            :1;
-               unsigned AN11           :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTB_t;
-extern volatile __PORTB_t __at (0xF81) PORTBbits;
-
-extern __sfr __at (0xF82) PORTC;
-typedef union {
-       struct {
-               unsigned RC0            : 1;
-               unsigned RC1            : 1;
-               unsigned RC2            : 1;
-               unsigned                : 1;
-               unsigned RC4            : 1;
-               unsigned RC5            : 1;
-               unsigned RC6            : 1;
-               unsigned RC7            : 1;
-       };
-       struct {
-               unsigned RC             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned T1CKI          :1;
-               unsigned T1OSCI         :1;
-               unsigned ECCPA          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned U1TX           :1;
-               unsigned U1RX           :1;
-       };
-       struct {
-               unsigned T3CKI          :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-       struct {
-               unsigned T1OSCO         :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTC_t;
-extern volatile __PORTC_t __at (0xF82) PORTCbits;
-
-extern __sfr __at (0xF83) PORTD;
-typedef union {
-       struct {
-               unsigned RD0            : 1;
-               unsigned RD1            : 1;
-               unsigned RD2            : 1;
-               unsigned RD3            : 1;
-               unsigned RD4            : 1;
-               unsigned RD5            : 1;
-               unsigned RD6            : 1;
-               unsigned RD7            : 1;
-       };
-       struct {
-               unsigned RD             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned ECCPB          :1;
-               unsigned ECCPC          :1;
-               unsigned ECCPD          :1;
-       };
-} __PORTD_t;
-extern volatile __PORTD_t __at (0xF83) PORTDbits;
-
-extern __sfr __at (0xF84) PORTE;
-typedef union {
-       struct {
-               unsigned RE0            : 1;
-               unsigned RE1            : 1;
-               unsigned RE2            : 1;
-               unsigned RE3            : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned RDPU           : 1;
-       };
-       struct {
-               unsigned RE             : 8;
-       };
-       /* aliases */
-       struct {
-               unsigned AN5            :1;
-               unsigned AN6            :1;
-               unsigned AN7            :1;
-               unsigned MCLR           :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-               unsigned                :1;
-       };
-} __PORTE_t;
-extern volatile __PORTE_t __at (0xF84) PORTEbits;
-
-extern __sfr __at (0xF89) LATA;
-typedef union {
-       struct {
-               unsigned LATA0          : 1;
-               unsigned LATA1          : 1;
-               unsigned LATA2          : 1;
-               unsigned LATA3          : 1;
-               unsigned LATA4          : 1;
-               unsigned LATA5          : 1;
-               unsigned LATA6          : 1;
-               unsigned                : 1;
-       };
-} __LATA_t;
-extern volatile __LATA_t __at (0xF89) LATAbits;
-
-extern __sfr __at (0xF8A) LATB;
-typedef union {
-       struct {
-               unsigned LATB0          : 1;
-               unsigned LATB1          : 1;
-               unsigned LATB2          : 1;
-               unsigned LATB3          : 1;
-               unsigned LATB4          : 1;
-               unsigned LATB5          : 1;
-               unsigned LATB6          : 1;
-               unsigned LATB7          : 1;
-       };
-} __LATB_t;
-extern volatile __LATB_t __at (0xF8A) LATBbits;
-
-extern __sfr __at (0xF8B) LATC;
-typedef union {
-       struct {
-               unsigned LATC0          : 1;
-               unsigned LATC1          : 1;
-               unsigned LATC2          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned LATC6          : 1;
-               unsigned LATC7          : 1;
-       };
-} __LATC_t;
-extern volatile __LATC_t __at (0xF8B) LATCbits;
-
-extern __sfr __at (0xF8C) LATD;
-typedef union {
-       struct {
-               unsigned LATD0          : 1;
-               unsigned LATD1          : 1;
-               unsigned LATD2          : 1;
-               unsigned LATD3          : 1;
-               unsigned LATD4          : 1;
-               unsigned LATD5          : 1;
-               unsigned LATD6          : 1;
-               unsigned LATD7          : 1;
-       };
-} __LATD_t;
-extern volatile __LATD_t __at (0xF8C) LATDbits;
-
-extern __sfr __at (0xF8D) LATE;
-typedef union {
-       struct {
-               unsigned LATE0          : 1;
-               unsigned LATE1          : 1;
-               unsigned LATE2          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __LATE_t;
-extern volatile __LATE_t __at (0xF8D) LATEbits;
-
-extern __sfr __at (0xF92) TRISA;
-typedef union {
-       struct {
-               unsigned TRISA0         : 1;
-               unsigned TRISA1         : 1;
-               unsigned TRISA2         : 1;
-               unsigned TRISA3         : 1;
-               unsigned TRISA4         : 1;
-               unsigned TRISA5         : 1;
-               unsigned TRISA6         : 1;
-               unsigned                : 1;
-       };
-} __TRISA_t;
-extern volatile __TRISA_t __at (0xF92) TRISAbits;
-
-extern __sfr __at (0xF93) TRISB;
-typedef union {
-       struct {
-               unsigned TRISB0         : 1;
-               unsigned TRISB1         : 1;
-               unsigned TRISB2         : 1;
-               unsigned TRISB3         : 1;
-               unsigned TRISB4         : 1;
-               unsigned TRISB5         : 1;
-               unsigned TRISB6         : 1;
-               unsigned TRISB7         : 1;
-       };
-} __TRISB_t;
-extern volatile __TRISB_t __at (0xF93) TRISBbits;
-
-extern __sfr __at (0xF94) TRISC;
-typedef union {
-       struct {
-               unsigned TRISC0         : 1;
-               unsigned TRISC1         : 1;
-               unsigned TRISC2         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned TRISC6         : 1;
-               unsigned TRISC7         : 1;
-       };
-} __TRISC_t;
-extern volatile __TRISC_t __at (0xF94) TRISCbits;
-
-extern __sfr __at (0xF95) TRISD;
-typedef union {
-       struct {
-               unsigned TRISD0         : 1;
-               unsigned TRISD1         : 1;
-               unsigned TRISD2         : 1;
-               unsigned TRISD3         : 1;
-               unsigned TRISD4         : 1;
-               unsigned TRISD5         : 1;
-               unsigned TRISD6         : 1;
-               unsigned TRISD7         : 1;
-       };
-} __TRISD_t;
-extern volatile __TRISD_t __at (0xF95) TRISDbits;
-
-extern __sfr __at (0xF96) TRISE;
-typedef union {
-       struct {
-               unsigned TRISE0         : 1;
-               unsigned TRISE1         : 1;
-               unsigned TRISE2         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TRISE_t;
-extern volatile __TRISE_t __at (0xF96) TRISEbits;
-
-extern __sfr __at (0xF9B) OSCTUNE;
-typedef union {
-       struct {
-               unsigned TUN            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned HF256DIV       : 1;
-       };
-} __OSCTUNE_t;
-extern volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-extern __sfr __at (0xF9D) PIE1;
-typedef union {
-       struct {
-               unsigned TMR1IE         : 1;
-               unsigned TMR2IE         : 1;
-               unsigned CCP1IE         : 1;
-               unsigned SSPIE          : 1;
-               unsigned TXIE           : 1;
-               unsigned RCIE           : 1;
-               unsigned ADIE           : 1;
-               unsigned SPPIE          : 1;
-       };
-} __PIE1_t;
-extern volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-extern __sfr __at (0xF9E) PIR1;
-typedef union {
-       struct {
-               unsigned TMR1IF         : 1;
-               unsigned TMR2IF         : 1;
-               unsigned CCP1IF         : 1;
-               unsigned SSPIF          : 1;
-               unsigned TXIF           : 1;
-               unsigned RCIF           : 1;
-               unsigned ADIF           : 1;
-               unsigned SPPIF          : 1;
-       };
-} __PIR1_t;
-extern volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-extern __sfr __at (0xF9F) IPR1;
-typedef union {
-       struct {
-               unsigned TMR1IP         : 1;
-               unsigned TMR2IP         : 1;
-               unsigned CCP1IP         : 1;
-               unsigned SSPIP          : 1;
-               unsigned TXIP           : 1;
-               unsigned RCIP           : 1;
-               unsigned ADIP           : 1;
-               unsigned SPPIP          : 1;
-       };
-} __IPR1_t;
-extern volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-extern __sfr __at (0xFA0) PIE2;
-typedef union {
-       struct {
-               unsigned CCP2IE         : 1;
-               unsigned TMR3IE         : 1;
-               unsigned HLVDIE         : 1;
-               unsigned BCLIE          : 1;
-               unsigned EEIE           : 1;
-               unsigned USBIE          : 1;
-               unsigned CMIE           : 1;
-               unsigned OSCFIE         : 1;
-       };
-} __PIE2_t;
-extern volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-extern __sfr __at (0xFA1) PIR2;
-typedef union {
-       struct {
-               unsigned CCP2IF         : 1;
-               unsigned TMR3IF         : 1;
-               unsigned HLVDIF         : 1;
-               unsigned BCLIF          : 1;
-               unsigned EEIF           : 1;
-               unsigned USBIF          : 1;
-               unsigned CMIF           : 1;
-               unsigned OSCFIF         : 1;
-       };
-} __PIR2_t;
-extern volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-extern __sfr __at (0xFA2) IPR2;
-typedef union {
-       struct {
-               unsigned CCP2IP         : 1;
-               unsigned TMR3IP         : 1;
-               unsigned HLVDIP         : 1;
-               unsigned BCLIP          : 1;
-               unsigned EEIP           : 1;
-               unsigned USBIP          : 1;
-               unsigned CMIP           : 1;
-               unsigned OSCFIP         : 1;
-       };
-} __IPR2_t;
-extern volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-extern __sfr __at (0xFA6) EECON1;
-typedef union {
-       struct {
-               unsigned RD             : 1;
-               unsigned WR             : 1;
-               unsigned WREN           : 1;
-               unsigned WRERR          : 1;
-               unsigned FREE           : 1;
-               unsigned                : 1;
-               unsigned CFGS           : 1;
-               unsigned EEPGD          : 1;
-       };
-} __EECON1_t;
-extern volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-extern __sfr __at (0xFA7) EECON2;
-
-extern __sfr __at (0xFA8) EEDATA;
-
-extern __sfr __at (0xFA9) EEADR;
-
-extern __sfr __at (0xFAB) RCSTA;
-typedef union {
-       struct {
-               unsigned RX9D           : 1;
-               unsigned OERR           : 1;
-               unsigned FERR           : 1;
-               unsigned ADDEN          : 1;
-               unsigned CREN           : 1;
-               unsigned SREN           : 1;
-               unsigned RX9            : 1;
-               unsigned SPEN           : 1;
-       };
-} __RCSTA_t;
-extern volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-extern __sfr __at (0xFAC) TXSTA;
-typedef union {
-       struct {
-               unsigned TX9D           : 1;
-               unsigned TRMT           : 1;
-               unsigned BRGH           : 1;
-               unsigned SENDB          : 1;
-               unsigned SYNC           : 1;
-               unsigned TXEN           : 1;
-               unsigned TX9            : 1;
-               unsigned CSRC           : 1;
-       };
-} __TXSTA_t;
-extern volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-extern __sfr __at (0xFAD) TXREG;
-
-extern __sfr __at (0xFAE) RCREG;
-
-extern __sfr __at (0xFAF) SPBRG;
-
-extern __sfr __at (0xFB0) SPBRGH;
-
-extern __sfr __at (0xFB1) T3CON;
-typedef union {
-       struct {
-               unsigned TMR3ON         : 1;
-               unsigned TMR3CS         : 1;
-               unsigned NOT_T3SYNC     : 1;
-               unsigned T3CCP1         : 1;
-               unsigned T3CKPS0        : 1;
-               unsigned T3CKPS1        : 1;
-               unsigned T3CCP2         : 1;
-               unsigned RD16           : 1;
-       };
-} __T3CON_t;
-extern volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-extern __sfr __at (0xFB2) TMR3L;
-
-extern __sfr __at (0xFB3) TMR3H;
-
-extern __sfr __at (0xFB4) CMCON;
-typedef union {
-       struct {
-               unsigned CM0            : 1;
-               unsigned CM1            : 1;
-               unsigned CM2            : 1;
-               unsigned CIS            : 1;
-               unsigned C1INV          : 1;
-               unsigned C2INV          : 1;
-               unsigned C1OUT          : 1;
-               unsigned C2OUT          : 1;
-       };
-} __CMCON_t;
-extern volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-extern __sfr __at (0xFB5) CVRCON;
-typedef union {
-       struct {
-               unsigned CVR0           : 1;
-               unsigned CVR1           : 1;
-               unsigned CVR2           : 1;
-               unsigned CVR3           : 1;
-               unsigned CVRSS          : 1;
-               unsigned CVRR           : 1;
-               unsigned CVROE          : 1;
-               unsigned CVREN          : 1;
-       };
-} __CVRCON_t;
-extern volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-extern __sfr __at (0xFB6) ECCP1AS;
-typedef union {
-       struct {
-               unsigned PSSBD0         : 1;
-               unsigned PSSBD1         : 1;
-               unsigned PSSAC0         : 1;
-               unsigned PSSAC1         : 1;
-               unsigned ECCPAS0        : 1;
-               unsigned ECCPAS1        : 1;
-               unsigned ECCPAS2        : 1;
-               unsigned ECCPASE        : 1;
-       };
-} __ECCP1AS_t;
-extern volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-extern __sfr __at (0xFB7) ECCP1DEL;
-typedef union {
-       struct {
-               unsigned PDC            : 7;
-               unsigned PRSEN          : 1;
-       };
-} __ECCP1DEL_t;
-extern volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-extern __sfr __at (0xFB8) BAUDCON;
-typedef union {
-       struct {
-               unsigned ABDEN          : 1;
-               unsigned WUE            : 1;
-               unsigned                : 1;
-               unsigned BRG16          : 1;
-               unsigned SCKP           : 1;
-               unsigned                : 1;
-               unsigned RCMT           : 1;
-               unsigned ABDOVF         : 1;
-       };
-} __BAUDCON_t;
-extern volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-extern __sfr __at (0xFBA) CCP2CON;
-typedef union {
-       struct {
-               unsigned CCP2M0         : 1;
-               unsigned CCP2M1         : 1;
-               unsigned CCP2M2         : 1;
-               unsigned CCP2M3         : 1;
-               unsigned DC2B0          : 1;
-               unsigned DC2B1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __CCP2CON_t;
-extern volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-extern __sfr __at (0xFBB) CCPR2L;
-
-extern __sfr __at (0xFBC) CCPR2H;
-
-extern __sfr __at (0xFBD) CCP1CON;
-typedef union {
-       struct {
-               unsigned CCP1M0         : 1;
-               unsigned CCP1M1         : 1;
-               unsigned CCP1M2         : 1;
-               unsigned CCP1M3         : 1;
-               unsigned DC1B0          : 1;
-               unsigned DC1B1          : 1;
-               unsigned P1M0           : 1;
-               unsigned P1M1           : 1;
-       };
-} __CCP1CON_t;
-extern volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-extern __sfr __at (0xFBE) CCPR1L;
-
-extern __sfr __at (0xFBF) CCPR1H;
-
-extern __sfr __at (0xFC0) ADCON2;
-typedef union {
-       struct {
-               unsigned ADCS0          : 1;
-               unsigned ADCS1          : 1;
-               unsigned ADCS2          : 1;
-               unsigned ACQT0          : 1;
-               unsigned ACQT1          : 1;
-               unsigned ACQT2          : 1;
-               unsigned                : 1;
-               unsigned ADFM           : 1;
-       };
-} __ADCON2_t;
-extern volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-extern __sfr __at (0xFC1) ADCON1;
-typedef union {
-       struct {
-               unsigned PCFG0          : 1;
-               unsigned PCFG1          : 1;
-               unsigned PCFG2          : 1;
-               unsigned PCFG3          : 1;
-               unsigned VCFG0          : 1;
-               unsigned VCFG1          : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON1_t;
-extern volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-extern __sfr __at (0xFC2) ADCON0;
-typedef union {
-       struct {
-               unsigned ADON           : 1;
-               unsigned GO             : 1;
-               unsigned CHS0           : 1;
-               unsigned CHS1           : 1;
-               unsigned CHS2           : 1;
-               unsigned CHS3           : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __ADCON0_t;
-extern volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-extern __sfr __at (0xFC3) ADRESL;
-
-extern __sfr __at (0xFC4) ADRESH;
-
-extern __sfr __at (0xFC5) SSPCON2;
-typedef union {
-       struct {
-               unsigned SEN            : 1;
-               unsigned RSEN           : 1;
-               unsigned PEN            : 1;
-               unsigned RCEN           : 1;
-               unsigned ACKEN          : 1;
-               unsigned ACKDT          : 1;
-               unsigned ACKSTAT        : 1;
-               unsigned GCEN           : 1;
-       };
-} __SSPCON2_t;
-extern volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-extern __sfr __at (0xFC6) SSPCON1;
-typedef union {
-       struct {
-               unsigned SSPM0          : 1;
-               unsigned SSPM1          : 1;
-               unsigned SSPM2          : 1;
-               unsigned SSPM3          : 1;
-               unsigned CKP            : 1;
-               unsigned SSPEN          : 1;
-               unsigned SSPOV          : 1;
-               unsigned WCOL           : 1;
-       };
-} __SSPCON1_t;
-extern volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-extern __sfr __at (0xFC7) SSPSTAT;
-typedef union {
-       struct {
-               unsigned BF             : 1;
-               unsigned UA             : 1;
-               unsigned R_W            : 1;
-               unsigned S              : 1;
-               unsigned P              : 1;
-               unsigned D_A            : 1;
-               unsigned CKE            : 1;
-               unsigned SMP            : 1;
-       };
-} __SSPSTAT_t;
-extern volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-extern __sfr __at (0xFC8) SSPADD;
-
-extern __sfr __at (0xFC9) SSPBUF;
-
-extern __sfr __at (0xFCA) T2CON;
-typedef union {
-       struct {
-               unsigned T2CKPS0        : 1;
-               unsigned T2CKPS1        : 1;
-               unsigned TMR2ON         : 1;
-               unsigned TOUTPS0        : 1;
-               unsigned TOUTPS1        : 1;
-               unsigned TOUTPS2        : 1;
-               unsigned TOUTPS3        : 1;
-               unsigned                : 1;
-       };
-} __T2CON_t;
-extern volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-extern __sfr __at (0xFCB) PR2;
-
-extern __sfr __at (0xFCC) TMR2;
-
-extern __sfr __at (0xFCD) T1CON;
-typedef union {
-       struct {
-               unsigned TMR1ON         : 1;
-               unsigned TMR1CS         : 1;
-               unsigned NOT_T1SYNC     : 1;
-               unsigned T1OSCEN        : 1;
-               unsigned T1CKPS0        : 1;
-               unsigned T1CKPS1        : 1;
-               unsigned T1RUN          : 1;
-               unsigned RD16           : 1;
-       };
-} __T1CON_t;
-extern volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-extern __sfr __at (0xFCE) TMR1L;
-
-extern __sfr __at (0xFCF) TMR1H;
-
-extern __sfr __at (0xFD0) RCON;
-typedef union {
-       struct {
-               unsigned BOR            : 1;
-               unsigned POR            : 1;
-               unsigned PD             : 1;
-               unsigned TO             : 1;
-               unsigned RI             : 1;
-               unsigned                : 1;
-               unsigned SBOREN         : 1;
-               unsigned IPEN           : 1;
-       };
-} __RCON_t;
-extern volatile __RCON_t __at (0xFD0) RCONbits;
-
-extern __sfr __at (0xFD1) WDTCON;
-typedef union {
-       struct {
-               unsigned SWDTEN         : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __WDTCON_t;
-extern volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-extern __sfr __at (0xFD2) HLVDCON;
-typedef union {
-       struct {
-               unsigned HLVDL0         : 1;
-               unsigned HLVDL1         : 1;
-               unsigned HLVDL2         : 1;
-               unsigned HLVDL3         : 1;
-               unsigned HLVDEN         : 1;
-               unsigned IRVST          : 1;
-               unsigned                : 1;
-               unsigned VDIRMAG        : 1;
-       };
-} __HLVDCON_t;
-extern volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-extern __sfr __at (0xFD3) OSCCON;
-typedef union {
-       struct {
-               unsigned SCS            : 2;
-               unsigned FLTS           : 1;
-               unsigned OSTS           : 1;
-               unsigned IRCF           : 3;
-               unsigned IDLEN          : 1;
-       };
-} __OSCCON_t;
-extern volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-extern __sfr __at (0xFD5) T0CON;
-typedef union {
-       struct {
-               unsigned T0PS0          : 1;
-               unsigned T0PS1          : 1;
-               unsigned T0PS2          : 1;
-               unsigned PSA            : 1;
-               unsigned T0SE           : 1;
-               unsigned T0CS           : 1;
-               unsigned T08BIT         : 1;
-               unsigned TMR0ON         : 1;
-       };
-} __T0CON_t;
-extern volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-extern __sfr __at (0xFD6) TMR0L;
-
-extern __sfr __at (0xFD7) TMR0H;
-
-extern __sfr __at (0xFD8) STATUS;
-typedef union {
-       struct {
-               unsigned C              : 1;
-               unsigned DC             : 1;
-               unsigned Z              : 1;
-               unsigned OV             : 1;
-               unsigned N              : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __STATUS_t;
-extern volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-extern __sfr __at (0xFD9) FSR2L;
-
-extern __sfr __at (0xFDA) FSR2H;
-typedef union {
-       struct {
-               unsigned FSR2H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR2H_t;
-extern volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-extern __sfr __at (0xFDB) PLUSW2;
-
-extern __sfr __at (0xFDC) PREINC2;
-
-extern __sfr __at (0xFDD) POSTDEC2;
-
-extern __sfr __at (0xFDE) POSTINC2;
-
-extern __sfr __at (0xFDF) INDF2;
-
-extern __sfr __at (0xFE0) BSR;
-typedef union {
-       struct {
-               unsigned BSR            : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __BSR_t;
-extern volatile __BSR_t __at (0xFE0) BSRbits;
-
-extern __sfr __at (0xFE1) FSR1L;
-
-extern __sfr __at (0xFE2) FSR1H;
-typedef union {
-       struct {
-               unsigned FSR1H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR1H_t;
-extern volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-extern __sfr __at (0xFE3) PLUSW1;
-
-extern __sfr __at (0xFE4) PREINC1;
-
-extern __sfr __at (0xFE5) POSTDEC1;
-
-extern __sfr __at (0xFE6) POSTINC1;
-
-extern __sfr __at (0xFE7) INDF1;
-
-extern __sfr __at (0xFE8) WREG;
-
-extern __sfr __at (0xFE9) FSR0L;
-
-extern __sfr __at (0xFEA) FSR0H;
-typedef union {
-       struct {
-               unsigned FSR0H          : 4;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __FSR0H_t;
-extern volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-extern __sfr __at (0xFEB) PLUSW0;
-
-extern __sfr __at (0xFEC) PREINC0;
-
-extern __sfr __at (0xFED) POSTDEC0;
-
-extern __sfr __at (0xFEE) POSTINC0;
-
-extern __sfr __at (0xFEF) INDF0;
-
-extern __sfr __at (0xFF0) INTCON3;
-typedef union {
-       struct {
-               unsigned INT1IF         : 1;
-               unsigned INT2IF         : 1;
-               unsigned                : 1;
-               unsigned INT1IE         : 1;
-               unsigned INT2IE         : 1;
-               unsigned                : 1;
-               unsigned INT1IP         : 1;
-               unsigned INT2IP         : 1;
-       };
-} __INTCON3_t;
-extern volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-extern __sfr __at (0xFF1) INTCON2;
-typedef union {
-       struct {
-               unsigned RBIP           : 1;
-               unsigned                : 1;
-               unsigned TMR0IP         : 1;
-               unsigned                : 1;
-               unsigned INTEDG2        : 1;
-               unsigned INTEDG1        : 1;
-               unsigned INTEDG0        : 1;
-               unsigned RBPU           : 1;
-       };
-} __INTCON2_t;
-extern volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-extern __sfr __at (0xFF2) INTCON;
-typedef union {
-       struct {
-               unsigned RBIF           : 1;
-               unsigned INT0IF         : 1;
-               unsigned TMR0IF         : 1;
-               unsigned RBIE           : 1;
-               unsigned INT0IE         : 1;
-               unsigned TMR0IE         : 1;
-               unsigned PEIE           : 1;
-               unsigned GIE            : 1;
-       };
-       struct {
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned GIEL           : 1;
-               unsigned GIEH           : 1;
-       };
-} __INTCON_t;
-extern volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-extern __sfr __at (0xFF3) PRODL;
-
-extern __sfr __at (0xFF4) PRODH;
-
-extern __sfr __at (0xFF5) TABLAT;
-
-extern __sfr __at (0xFF6) TBLPTRL;
-
-extern __sfr __at (0xFF7) TBLPTRH;
-
-extern __sfr __at (0xFF8) TBLPTRU;
-typedef union {
-       struct {
-               unsigned TBLPTRU        : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TBLPTRU_t;
-extern volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-extern __sfr __at (0xFF9) PCL;
-
-extern __sfr __at (0xFFA) PCLATH;
-typedef union {
-       struct {
-               unsigned PCH            : 8;
-       };
-} __PCLATH_t;
-extern volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-extern __sfr __at (0xFFB) PCLATU;
-typedef union {
-       struct {
-               unsigned PCU            : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __PCLATU_t;
-extern volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-extern __sfr __at (0xFFC) STKPTR;
-typedef union {
-       struct {
-               unsigned STKPTR         : 5;
-               unsigned                : 1;
-               unsigned STKUNF         : 1;
-               unsigned STKFUL         : 1;
-       };
-} __STKPTR_t;
-extern volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-extern __sfr __at (0xFFD) TOSL;
-
-extern __sfr __at (0xFFE) TOSH;
-
-extern __sfr __at (0xFFF) TOSU;
-typedef union {
-       struct {
-               unsigned TOSU           : 5;
-               unsigned                : 1;
-               unsigned                : 1;
-               unsigned                : 1;
-       };
-} __TOSU_t;
-extern volatile __TOSU_t __at (0xFFF) TOSUbits;
-
-/* Configuration register locations */
-#define        __CONFIG1L      0x300000
-#define        __CONFIG1H      0x300001
-#define        __CONFIG2L      0x300002
-#define        __CONFIG2H      0x300003
-#define        __CONFIG3H      0x300005
-#define        __CONFIG4L      0x300006
-#define        __CONFIG5L      0x300008
-#define        __CONFIG5H      0x300009
-#define        __CONFIG6L      0x30000A
-#define        __CONFIG6H      0x30000B
-#define        __CONFIG7L      0x30000C
-#define        __CONFIG7H      0x30000D
-
-
-/* Full-Speed USB Clock Source Selection 1L options */
-#define        _USBPLL_CLOCK_SRC_FROM_96MHZ_PLL_2_1L           0xFF    /* Clock src from 96MHz PLL/2 */
-#define        _USBPLL_CLOCK_SRC_FROM_OSC1_OSC2_1L             0xDF    /* Clock src from OSC1/OSC2 */
-
-/* CPU System Clock Postscaler 1L options */
-#define        _CPUDIV__OSC1_OSC2_SRC___4__96MHZ_PLL_SRC___6__1L       0xFF    /* [OSC1/OSC2 Src: /4][96MHz PLL Src: /6] */
-#define        _CPUDIV__OSC1_OSC2_SRC___3__96MHZ_PLL_SRC___4__1L       0xF7    /* [OSC1/OSC2 Src: /3][96MHz PLL Src: /4] */
-#define        _CPUDIV__OSC1_OSC2_SRC___2__96MHZ_PLL_SRC___3__1L       0xEF    /* [OSC1/OSC2 Src: /2][96MHz PLL Src: /3] */
-#define        _CPUDIV__OSC1_OSC2_SRC___1__96MHZ_PLL_SRC___2__1L       0xE7    /* [OSC1/OSC2 Src: /1][96MHz PLL Src: /2] */
-
-/* 96MHz PLL Prescaler 1L options */
-#define        _PLLDIV_DIVIDE_BY_12__48MHZ_INPUT__1L           0xFF    /* Divide by 12 (48MHz input) */
-#define        _PLLDIV_DIVIDE_BY_10__40MHZ_INPUT__1L           0xFE    /* Divide by 10 (40MHz input) */
-#define        _PLLDIV_DIVIDE_BY_6__24MHZ_INPUT__1L            0xFD    /* Divide by 6 (24MHz input) */
-#define        _PLLDIV_DIVIDE_BY_5__20MHZ_INPUT__1L            0xFC    /* Divide by 5 (20MHz input) */
-#define        _PLLDIV_DIVIDE_BY_4__16MHZ_INPUT__1L            0xFB    /* Divide by 4 (16MHz input) */
-#define        _PLLDIV_DIVIDE_BY_3__12MHZ_INPUT__1L            0xFA    /* Divide by 3 (12MHz input) */
-#define        _PLLDIV_DIVIDE_BY_2__8MHZ_INPUT__1L             0xF9    /* Divide by 2 (8MHz input) */
-#define        _PLLDIV_NO_DIVIDE__4MHZ_INPUT__1L               0xF8    /* No Divide (4MHz input) */
-
-
-/* Oscillator 1H options */
-#define        _OSC_HS__HS_PLL__USB_HS_1H                      0xFE    /* HS: HS+PLL, USB-HS */
-#define        _OSC_HS__USB_HS_1H                              0xFC    /* HS: USB-HS */
-#define        _OSC_INTOSC__USB_HS_1H                          0xFB    /* INTOSC: USB-HS */
-#define        _OSC_INTOSC__USB_XT_1H                          0xFA    /* INTOSC: USB-XT */
-#define        _OSC_INTOSC__INTOSC_CLK0_RA6___USB_EC_1H        0xF9    /* INTOSC: INTOSC+CLK0{RA6}, USB-EC */
-#define        _OSC_INTOSC__INTOSC_RA6__USB_EC_1H              0xF8    /* INTOSC: INTOSC+RA6, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_CLKO_RA6___USB_EC_1H    0xF7    /* EC: EC+PLL, EC+PLL+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_PLL__EC_PLL_RA6__USB_EC_1H          0xF6    /* EC: EC+PLL, EC+PLL+RA6, USB-EC */
-#define        _OSC_EC__EC_CLKO_RA6___USB_EC_1H                0xF5    /* EC: EC+CLKO{RA6}, USB-EC */
-#define        _OSC_EC__EC_RA6__USB_EC_1H                      0xF4    /* EC: EC+RA6, USB-EC */
-#define        _OSC_XT__XT_PLL__USB_XT_1H                      0xF2    /* XT: XT+PLL, USB-XT */
-#define        _OSC_XT__USB_XT_1H                              0xF0    /* XT: USB-XT */
-
-/* Fail-Safe Clock Monitor Enable 1H options */
-#define        _FCMEN_OFF_1H                                   0xBF    /* Disabled */
-#define        _FCMEN_ON_1H                                    0xFF    /* Enabled */
-
-/* Internal External Switch Over Mode 1H options */
-#define        _IESO_OFF_1H                                    0x7F    /* Disabled */
-#define        _IESO_ON_1H                                     0xFF    /* Enabled */
-
-
-/* USB Voltage Regulator 2L options */
-#define        _VREGEN_ON_2L                                   0xFF    /* Enabled */
-#define        _VREGEN_OFF_2L                                  0xDF    /* Disabled */
-
-/* Power Up Timer 2L options */
-#define        _PUT_OFF_2L                                     0xFF    /* Disabled */
-#define        _PUT_ON_2L                                      0xFE    /* Enabled */
-
-/* Brown Out Detect 2L options */
-#define        _BODEN_ON_2L                                    0xFF    /* Enabled in hardware, SBOREN disabled */
-#define        _BODEN_ON_WHILE_ACTIVE_2L                       0xFD    /* Enabled while active,disabled in SLEEP,SBOREN disabled */
-#define        _BODEN_CONTROLLED_WITH_SBOREN_BIT_2L            0xFB    /* Controlled with SBOREN bit */
-#define        _BODEN_OFF_2L                                   0xF9    /* Disabled in hardware, SBOREN disabled */
-
-/* Brown Out Voltage 2L options */
-#define        _BODENV_2_0V_2L                                 0xFF    /* 2.0V */
-#define        _BODENV_2_7V_2L                                 0xF7    /* 2.7V */
-#define        _BODENV_4_2V_2L                                 0xEF    /* 4.2V */
-#define        _BODENV_4_5V_2L                                 0xE7    /* 4.5V */
-
-
-/* Watchdog Timer 2H options */
-#define        _WDT_ON_2H                                      0xFF    /* Enabled */
-#define        _WDT_DISABLED_CONTROLLED_2H                     0xFE    /* Disabled-Controlled by SWDTEN bit */
-
-/* Watchdog Postscaler 2H options */
-#define        _WDTPS_1_32768_2H                               0xFF    /* 1:32768 */
-#define        _WDTPS_1_16384_2H                               0xFD    /* 1:16384 */
-#define        _WDTPS_1_8192_2H                                0xFB    /* 1:8192 */
-#define        _WDTPS_1_4096_2H                                0xF9    /* 1:4096 */
-#define        _WDTPS_1_2048_2H                                0xF7    /* 1:2048 */
-#define        _WDTPS_1_1024_2H                                0xF5    /* 1:1024 */
-#define        _WDTPS_1_512_2H                                 0xF3    /* 1:512 */
-#define        _WDTPS_1_256_2H                                 0xF1    /* 1:256 */
-#define        _WDTPS_1_128_2H                                 0xEF    /* 1:128 */
-#define        _WDTPS_1_64_2H                                  0xED    /* 1:64 */
-#define        _WDTPS_1_32_2H                                  0xEB    /* 1:32 */
-#define        _WDTPS_1_16_2H                                  0xE9    /* 1:16 */
-#define        _WDTPS_1_8_2H                                   0xE7    /* 1:8 */
-#define        _WDTPS_1_4_2H                                   0xE5    /* 1:4 */
-#define        _WDTPS_1_2_2H                                   0xE3    /* 1:2 */
-#define        _WDTPS_1_1_2H                                   0xE1    /* 1:1 */
-
-
-/* CCP2 Mux 3H options */
-#define        _CCP2MUX_RC1_3H                                 0xFF    /* RC1 */
-#define        _CCP2MUX_RB3_3H                                 0xFE    /* RB3 */
-
-/* PortB A/D Enable 3H options */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_ANALOG_INPUTS_ON_RESET_3H      0xFF    /* PORTB<4:0> configured as analog inputs on RESET */
-#define        _PBADEN_PORTB_4_0__CONFIGURED_AS_DIGITAL_I_O_ON_RESET_3H        0xFD    /* PORTB<4:0> configured as digital I/O on RESET */
-
-/* Low Power Timer1 Osc enable 3H options */
-#define        _LPT1OSC_ON_3H                                  0xFF    /* Enabled */
-#define        _LPT1OSC_OFF_3H                                 0xFB    /* Disabled */
-
-/* Master Clear Enable 3H options */
-#define        _MCLRE_MCLR_ON_RE3_OFF_3H                       0xFF    /* MCLR Enabled,RE3 Disabled */
-#define        _MCLRE_MCLR_OFF_RE3_ON_3H                       0x7F    /* MCLR Disabled,RE3 Enabled */
-
-
-/* Stack Overflow Reset 4L options */
-#define        _STVR_ON_4L                                     0xFF    /* Enabled */
-#define        _STVR_OFF_4L                                    0xFE    /* Disabled */
-
-/* Low Voltage Program 4L options */
-#define        _LVP_ON_4L                                      0xFF    /* Enabled */
-#define        _LVP_OFF_4L                                     0xFB    /* Disabled */
-
-/* Dedicated In-Circuit Port {ICD/ICSP} 4L options */
-#define        _ENICPORT_ON_4L                                 0xFF    /* Enabled */
-#define        _ENICPORT_OFF_4L                                0xDF    /* Disabled */
-
-/* Extended CPU Enable 4L options */
-#define        _ENHCPU_ON_4L                                   0xFF    /* Enabled */
-#define        _ENHCPU_OFF_4L                                  0xBF    /* Disabled */
-
-/* Background Debug 4L options */
-#define        _BACKBUG_OFF_4L                                 0xFF    /* Disabled */
-#define        _BACKBUG_ON_4L                                  0x7F    /* Enabled */
-
-
-/* Code Protect 00800-01FFF 5L options */
-#define        _CP_0_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_0_ON_5L                                     0xFE    /* Enabled */
-
-/* Code Protect 02000-03FFF 5L options */
-#define        _CP_1_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_1_ON_5L                                     0xFD    /* Enabled */
-
-/* Code Protect 04000-05FFF 5L options */
-#define        _CP_2_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_2_ON_5L                                     0xFB    /* Enabled */
-
-/* Code Protect 06000-07FFF 5L options */
-#define        _CP_3_OFF_5L                                    0xFF    /* Disabled */
-#define        _CP_3_ON_5L                                     0xF7    /* Enabled */
-
-
-/* Data EE Read Protect 5H options */
-#define        _CPD_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPD_ON_5H                                      0x7F    /* Enabled */
-
-/* Code Protect Boot 5H options */
-#define        _CPB_OFF_5H                                     0xFF    /* Disabled */
-#define        _CPB_ON_5H                                      0xBF    /* Enabled */
-
-
-/* Table Write Protect 00800-01FFF 6L options */
-#define        _WRT_0_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_0_ON_6L                                    0xFE    /* Enabled */
-
-/* Table Write Protect 02000-03FFF 6L options */
-#define        _WRT_1_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_1_ON_6L                                    0xFD    /* Enabled */
-
-/* Table Write Protect 04000-05FFF 6L options */
-#define        _WRT_2_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_2_ON_6L                                    0xFB    /* Enabled */
-
-/* Table Write Protect 06000-07FFF 6L options */
-#define        _WRT_3_OFF_6L                                   0xFF    /* Disabled */
-#define        _WRT_3_ON_6L                                    0xF7    /* Enabled */
-
-
-/* Data EE Write Protect 6H options */
-#define        _WRTD_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTD_ON_6H                                     0x7F    /* Enabled */
-
-/* Table Write Protect Boot 6H options */
-#define        _WRTB_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTB_ON_6H                                     0xBF    /* Enabled */
-
-/* Config. Write Protect 6H options */
-#define        _WRTC_OFF_6H                                    0xFF    /* Disabled */
-#define        _WRTC_ON_6H                                     0xDF    /* Enabled */
-
-
-/* Table Read Protect 00800-01FFF 7L options */
-#define        _EBTR_0_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_0_ON_7L                                   0xFE    /* Enabled */
-
-/* Table Read Protect 02000-03FFF 7L options */
-#define        _EBTR_1_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_1_ON_7L                                   0xFD    /* Enabled */
-
-/* Table Read Protect 04000-05FFF 7L options */
-#define        _EBTR_2_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_2_ON_7L                                   0xFB    /* Enabled */
-
-/* Table Read Protect 06000-07FFF 7L options */
-#define        _EBTR_3_OFF_7L                                  0xFF    /* Disabled */
-#define        _EBTR_3_ON_7L                                   0xF7    /* Enabled */
-
-
-/* Table Read Protect Boot 7H options */
-#define        _EBTRB_OFF_7H                                   0xFF    /* Disabled */
-#define        _EBTRB_ON_7H                                    0xBF    /* Enabled */
-
-
-
-/* Location of User ID words */
-#define        __IDLOC0        0x200000
-#define        __IDLOC1        0x200001
-#define        __IDLOC2        0x200002
-#define        __IDLOC3        0x200003
-#define        __IDLOC4        0x200004
-#define        __IDLOC5        0x200005
-#define        __IDLOC6        0x200006
-#define        __IDLOC7        0x200007
-
-#endif // __PIC18F4550__
index 938806d559472684d7b594670fc688c6d856509f..6fb1fd9a52c3b312456d54fa638960e7bfa34a86 100644 (file)
@@ -115,6 +115,9 @@ volatile __PORTB_t __at (0xF81) PORTBbits;
 __sfr __at (0xF82) PORTC;
 volatile __PORTC_t __at (0xF82) PORTCbits;
 
+__sfr __at (0xF83) PORTD;
+volatile __PORTD_t __at (0xF83) PORTDbits;
+
 __sfr __at (0xF84) PORTE;
 volatile __PORTE_t __at (0xF84) PORTEbits;
 
@@ -127,6 +130,12 @@ volatile __LATB_t __at (0xF8A) LATBbits;
 __sfr __at (0xF8B) LATC;
 volatile __LATC_t __at (0xF8B) LATCbits;
 
+__sfr __at (0xF8C) LATD;
+volatile __LATD_t __at (0xF8C) LATDbits;
+
+__sfr __at (0xF8D) LATE;
+volatile __LATE_t __at (0xF8D) LATEbits;
+
 __sfr __at (0xF92) TRISA;
 volatile __TRISA_t __at (0xF92) TRISAbits;
 
@@ -136,6 +145,12 @@ volatile __TRISB_t __at (0xF93) TRISBbits;
 __sfr __at (0xF94) TRISC;
 volatile __TRISC_t __at (0xF94) TRISCbits;
 
+__sfr __at (0xF95) TRISD;
+volatile __TRISD_t __at (0xF95) TRISDbits;
+
+__sfr __at (0xF96) TRISE;
+volatile __TRISE_t __at (0xF96) TRISEbits;
+
 __sfr __at (0xF9B) OSCTUNE;
 volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
 
index 8867310bff8ee0836aa760fca6340d136ab9aa1d..713d8496ea375d4229912802ff26bacb5e631070 100644 (file)
@@ -1,370 +1,6 @@
 /* 
  * pic18f2550.h - PIC18F2550 Device Library Sources
- * 
- * This file is part of the GNU PIC Library.
- * 
- * May, 2005
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#include <pic18f2550.h>
-
-__sfr __at (0xF62) SPPDATA;
-volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-__sfr __at (0xF63) SPPCFG;
-volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-__sfr __at (0xF64) SPPEPS;
-volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-__sfr __at (0xF65) SPPCON;
-volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-__sfr __at (0xF66) UFRML;
-volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-__sfr __at (0xF67) UFRMH;
-volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-__sfr __at (0xF68) UIR;
-volatile __UIR_t __at (0xF68) UIRbits;
-
-__sfr __at (0xF69) UIE;
-volatile __UIE_t __at (0xF69) UIEbits;
-
-__sfr __at (0xF6A) UEIR;
-volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-__sfr __at (0xF6B) UEIE;
-volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-__sfr __at (0xF6C) USTAT;
-volatile __USTAT_t __at (0xF6C) USTATbits;
-
-__sfr __at (0xF6D) UCON;
-volatile __UCON_t __at (0xF6D) UCONbits;
-
-__sfr __at (0xF6E) UADDR;
-volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-__sfr __at (0xF6F) UCFG;
-volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-__sfr __at (0xF70) UEP0;
-volatile __UEP0_t __at (0xF70) UEP0bits;
-
-__sfr __at (0xF71) UEP1;
-volatile __UEP1_t __at (0xF71) UEP1bits;
-
-__sfr __at (0xF72) UEP2;
-volatile __UEP2_t __at (0xF72) UEP2bits;
-
-__sfr __at (0xF73) UEP3;
-volatile __UEP3_t __at (0xF73) UEP3bits;
-
-__sfr __at (0xF74) UEP4;
-volatile __UEP4_t __at (0xF74) UEP4bits;
-
-__sfr __at (0xF75) UEP5;
-volatile __UEP5_t __at (0xF75) UEP5bits;
-
-__sfr __at (0xF76) UEP6;
-volatile __UEP6_t __at (0xF76) UEP6bits;
-
-__sfr __at (0xF77) UEP7;
-volatile __UEP7_t __at (0xF77) UEP7bits;
-
-__sfr __at (0xF78) UEP8;
-volatile __UEP8_t __at (0xF78) UEP8bits;
-
-__sfr __at (0xF79) UEP9;
-volatile __UEP9_t __at (0xF79) UEP9bits;
-
-__sfr __at (0xF7A) UEP10;
-volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-__sfr __at (0xF7B) UEP11;
-volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-__sfr __at (0xF7C) UEP12;
-volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-__sfr __at (0xF7D) UEP13;
-volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-__sfr __at (0xF7E) UEP14;
-volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-__sfr __at (0xF7F) UEP15;
-volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-__sfr __at (0xF80) PORTA;
-volatile __PORTA_t __at (0xF80) PORTAbits;
-
-__sfr __at (0xF81) PORTB;
-volatile __PORTB_t __at (0xF81) PORTBbits;
-
-__sfr __at (0xF82) PORTC;
-volatile __PORTC_t __at (0xF82) PORTCbits;
-
-__sfr __at (0xF84) PORTE;
-volatile __PORTE_t __at (0xF84) PORTEbits;
-
-__sfr __at (0xF89) LATA;
-volatile __LATA_t __at (0xF89) LATAbits;
-
-__sfr __at (0xF8A) LATB;
-volatile __LATB_t __at (0xF8A) LATBbits;
-
-__sfr __at (0xF8B) LATC;
-volatile __LATC_t __at (0xF8B) LATCbits;
-
-__sfr __at (0xF92) TRISA;
-volatile __TRISA_t __at (0xF92) TRISAbits;
-
-__sfr __at (0xF93) TRISB;
-volatile __TRISB_t __at (0xF93) TRISBbits;
-
-__sfr __at (0xF94) TRISC;
-volatile __TRISC_t __at (0xF94) TRISCbits;
-
-__sfr __at (0xF9B) OSCTUNE;
-volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-__sfr __at (0xF9D) PIE1;
-volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-__sfr __at (0xF9E) PIR1;
-volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-__sfr __at (0xF9F) IPR1;
-volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-__sfr __at (0xFA0) PIE2;
-volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-__sfr __at (0xFA1) PIR2;
-volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-__sfr __at (0xFA2) IPR2;
-volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-__sfr __at (0xFA6) EECON1;
-volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-__sfr __at (0xFA7) EECON2;
-
-__sfr __at (0xFA8) EEDATA;
-
-__sfr __at (0xFA9) EEADR;
-
-__sfr __at (0xFAB) RCSTA;
-volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-__sfr __at (0xFAC) TXSTA;
-volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-__sfr __at (0xFAD) TXREG;
-
-__sfr __at (0xFAE) RCREG;
-
-__sfr __at (0xFAF) SPBRG;
-
-__sfr __at (0xFB0) SPBRGH;
-
-__sfr __at (0xFB1) T3CON;
-volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-__sfr __at (0xFB2) TMR3L;
-
-__sfr __at (0xFB3) TMR3H;
-
-__sfr __at (0xFB4) CMCON;
-volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-__sfr __at (0xFB5) CVRCON;
-volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-__sfr __at (0xFB6) ECCP1AS;
-volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-__sfr __at (0xFB7) ECCP1DEL;
-volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-__sfr __at (0xFB8) BAUDCON;
-volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-__sfr __at (0xFBA) CCP2CON;
-volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-__sfr __at (0xFBB) CCPR2L;
-
-__sfr __at (0xFBC) CCPR2H;
-
-__sfr __at (0xFBD) CCP1CON;
-volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-__sfr __at (0xFBE) CCPR1L;
-
-__sfr __at (0xFBF) CCPR1H;
-
-__sfr __at (0xFC0) ADCON2;
-volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-__sfr __at (0xFC1) ADCON1;
-volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-__sfr __at (0xFC2) ADCON0;
-volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-__sfr __at (0xFC3) ADRESL;
-
-__sfr __at (0xFC4) ADRESH;
-
-__sfr __at (0xFC5) SSPCON2;
-volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-__sfr __at (0xFC6) SSPCON1;
-volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-__sfr __at (0xFC7) SSPSTAT;
-volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-__sfr __at (0xFC8) SSPADD;
-
-__sfr __at (0xFC9) SSPBUF;
-
-__sfr __at (0xFCA) T2CON;
-volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-__sfr __at (0xFCB) PR2;
-
-__sfr __at (0xFCC) TMR2;
-
-__sfr __at (0xFCD) T1CON;
-volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-__sfr __at (0xFCE) TMR1L;
-
-__sfr __at (0xFCF) TMR1H;
-
-__sfr __at (0xFD0) RCON;
-volatile __RCON_t __at (0xFD0) RCONbits;
-
-__sfr __at (0xFD1) WDTCON;
-volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-__sfr __at (0xFD2) HLVDCON;
-volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-__sfr __at (0xFD3) OSCCON;
-volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-__sfr __at (0xFD5) T0CON;
-volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-__sfr __at (0xFD6) TMR0L;
-
-__sfr __at (0xFD7) TMR0H;
-
-__sfr __at (0xFD8) STATUS;
-volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-__sfr __at (0xFD9) FSR2L;
-
-__sfr __at (0xFDA) FSR2H;
-volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-__sfr __at (0xFDB) PLUSW2;
-
-__sfr __at (0xFDC) PREINC2;
-
-__sfr __at (0xFDD) POSTDEC2;
-
-__sfr __at (0xFDE) POSTINC2;
-
-__sfr __at (0xFDF) INDF2;
-
-__sfr __at (0xFE0) BSR;
-volatile __BSR_t __at (0xFE0) BSRbits;
-
-__sfr __at (0xFE1) FSR1L;
-
-__sfr __at (0xFE2) FSR1H;
-volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-__sfr __at (0xFE3) PLUSW1;
-
-__sfr __at (0xFE4) PREINC1;
-
-__sfr __at (0xFE5) POSTDEC1;
-
-__sfr __at (0xFE6) POSTINC1;
-
-__sfr __at (0xFE7) INDF1;
-
-__sfr __at (0xFE8) WREG;
-
-__sfr __at (0xFE9) FSR0L;
-
-__sfr __at (0xFEA) FSR0H;
-volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-__sfr __at (0xFEB) PLUSW0;
-
-__sfr __at (0xFEC) PREINC0;
-
-__sfr __at (0xFED) POSTDEC0;
-
-__sfr __at (0xFEE) POSTINC0;
-
-__sfr __at (0xFEF) INDF0;
-
-__sfr __at (0xFF0) INTCON3;
-volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-__sfr __at (0xFF1) INTCON2;
-volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-__sfr __at (0xFF2) INTCON;
-volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-__sfr __at (0xFF3) PRODL;
-
-__sfr __at (0xFF4) PRODH;
-
-__sfr __at (0xFF5) TABLAT;
-
-__sfr __at (0xFF6) TBLPTRL;
-
-__sfr __at (0xFF7) TBLPTRH;
-
-__sfr __at (0xFF8) TBLPTRU;
-volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-__sfr __at (0xFF9) PCL;
-
-__sfr __at (0xFFA) PCLATH;
-volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-__sfr __at (0xFFB) PCLATU;
-volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-__sfr __at (0xFFC) STKPTR;
-volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-__sfr __at (0xFFD) TOSL;
-
-__sfr __at (0xFFE) TOSH;
-
-__sfr __at (0xFFF) TOSU;
-volatile __TOSU_t __at (0xFFF) TOSUbits;
+#include "pic18f2455.c"
 
index 78729cc0c675ef6eceab140abda10834a19cb832..dbc6ce2bff6506bf14fe371344f89662b7187e95 100644 (file)
@@ -1,385 +1,6 @@
 /* 
  * pic18f4455.h - PIC18F4455 Device Library Sources
- * 
- * This file is part of the GNU PIC Library.
- * 
- * May, 2005
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#include <pic18f4455.h>
-
-__sfr __at (0xF62) SPPDATA;
-volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-__sfr __at (0xF63) SPPCFG;
-volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-__sfr __at (0xF64) SPPEPS;
-volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-__sfr __at (0xF65) SPPCON;
-volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-__sfr __at (0xF66) UFRML;
-volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-__sfr __at (0xF67) UFRMH;
-volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-__sfr __at (0xF68) UIR;
-volatile __UIR_t __at (0xF68) UIRbits;
-
-__sfr __at (0xF69) UIE;
-volatile __UIE_t __at (0xF69) UIEbits;
-
-__sfr __at (0xF6A) UEIR;
-volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-__sfr __at (0xF6B) UEIE;
-volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-__sfr __at (0xF6C) USTAT;
-volatile __USTAT_t __at (0xF6C) USTATbits;
-
-__sfr __at (0xF6D) UCON;
-volatile __UCON_t __at (0xF6D) UCONbits;
-
-__sfr __at (0xF6E) UADDR;
-volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-__sfr __at (0xF6F) UCFG;
-volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-__sfr __at (0xF70) UEP0;
-volatile __UEP0_t __at (0xF70) UEP0bits;
-
-__sfr __at (0xF71) UEP1;
-volatile __UEP1_t __at (0xF71) UEP1bits;
-
-__sfr __at (0xF72) UEP2;
-volatile __UEP2_t __at (0xF72) UEP2bits;
-
-__sfr __at (0xF73) UEP3;
-volatile __UEP3_t __at (0xF73) UEP3bits;
-
-__sfr __at (0xF74) UEP4;
-volatile __UEP4_t __at (0xF74) UEP4bits;
-
-__sfr __at (0xF75) UEP5;
-volatile __UEP5_t __at (0xF75) UEP5bits;
-
-__sfr __at (0xF76) UEP6;
-volatile __UEP6_t __at (0xF76) UEP6bits;
-
-__sfr __at (0xF77) UEP7;
-volatile __UEP7_t __at (0xF77) UEP7bits;
-
-__sfr __at (0xF78) UEP8;
-volatile __UEP8_t __at (0xF78) UEP8bits;
-
-__sfr __at (0xF79) UEP9;
-volatile __UEP9_t __at (0xF79) UEP9bits;
-
-__sfr __at (0xF7A) UEP10;
-volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-__sfr __at (0xF7B) UEP11;
-volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-__sfr __at (0xF7C) UEP12;
-volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-__sfr __at (0xF7D) UEP13;
-volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-__sfr __at (0xF7E) UEP14;
-volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-__sfr __at (0xF7F) UEP15;
-volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-__sfr __at (0xF80) PORTA;
-volatile __PORTA_t __at (0xF80) PORTAbits;
-
-__sfr __at (0xF81) PORTB;
-volatile __PORTB_t __at (0xF81) PORTBbits;
-
-__sfr __at (0xF82) PORTC;
-volatile __PORTC_t __at (0xF82) PORTCbits;
-
-__sfr __at (0xF83) PORTD;
-volatile __PORTD_t __at (0xF83) PORTDbits;
-
-__sfr __at (0xF84) PORTE;
-volatile __PORTE_t __at (0xF84) PORTEbits;
-
-__sfr __at (0xF89) LATA;
-volatile __LATA_t __at (0xF89) LATAbits;
-
-__sfr __at (0xF8A) LATB;
-volatile __LATB_t __at (0xF8A) LATBbits;
-
-__sfr __at (0xF8B) LATC;
-volatile __LATC_t __at (0xF8B) LATCbits;
-
-__sfr __at (0xF8C) LATD;
-volatile __LATD_t __at (0xF8C) LATDbits;
-
-__sfr __at (0xF8D) LATE;
-volatile __LATE_t __at (0xF8D) LATEbits;
-
-__sfr __at (0xF92) TRISA;
-volatile __TRISA_t __at (0xF92) TRISAbits;
-
-__sfr __at (0xF93) TRISB;
-volatile __TRISB_t __at (0xF93) TRISBbits;
-
-__sfr __at (0xF94) TRISC;
-volatile __TRISC_t __at (0xF94) TRISCbits;
-
-__sfr __at (0xF95) TRISD;
-volatile __TRISD_t __at (0xF95) TRISDbits;
-
-__sfr __at (0xF96) TRISE;
-volatile __TRISE_t __at (0xF96) TRISEbits;
-
-__sfr __at (0xF9B) OSCTUNE;
-volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-__sfr __at (0xF9D) PIE1;
-volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-__sfr __at (0xF9E) PIR1;
-volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-__sfr __at (0xF9F) IPR1;
-volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-__sfr __at (0xFA0) PIE2;
-volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-__sfr __at (0xFA1) PIR2;
-volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-__sfr __at (0xFA2) IPR2;
-volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-__sfr __at (0xFA6) EECON1;
-volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-__sfr __at (0xFA7) EECON2;
-
-__sfr __at (0xFA8) EEDATA;
-
-__sfr __at (0xFA9) EEADR;
-
-__sfr __at (0xFAB) RCSTA;
-volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-__sfr __at (0xFAC) TXSTA;
-volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-__sfr __at (0xFAD) TXREG;
-
-__sfr __at (0xFAE) RCREG;
-
-__sfr __at (0xFAF) SPBRG;
-
-__sfr __at (0xFB0) SPBRGH;
-
-__sfr __at (0xFB1) T3CON;
-volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-__sfr __at (0xFB2) TMR3L;
-
-__sfr __at (0xFB3) TMR3H;
-
-__sfr __at (0xFB4) CMCON;
-volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-__sfr __at (0xFB5) CVRCON;
-volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-__sfr __at (0xFB6) ECCP1AS;
-volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-__sfr __at (0xFB7) ECCP1DEL;
-volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-__sfr __at (0xFB8) BAUDCON;
-volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-__sfr __at (0xFBA) CCP2CON;
-volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-__sfr __at (0xFBB) CCPR2L;
-
-__sfr __at (0xFBC) CCPR2H;
-
-__sfr __at (0xFBD) CCP1CON;
-volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-__sfr __at (0xFBE) CCPR1L;
-
-__sfr __at (0xFBF) CCPR1H;
-
-__sfr __at (0xFC0) ADCON2;
-volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-__sfr __at (0xFC1) ADCON1;
-volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-__sfr __at (0xFC2) ADCON0;
-volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-__sfr __at (0xFC3) ADRESL;
-
-__sfr __at (0xFC4) ADRESH;
-
-__sfr __at (0xFC5) SSPCON2;
-volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-__sfr __at (0xFC6) SSPCON1;
-volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-__sfr __at (0xFC7) SSPSTAT;
-volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-__sfr __at (0xFC8) SSPADD;
-
-__sfr __at (0xFC9) SSPBUF;
-
-__sfr __at (0xFCA) T2CON;
-volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-__sfr __at (0xFCB) PR2;
-
-__sfr __at (0xFCC) TMR2;
-
-__sfr __at (0xFCD) T1CON;
-volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-__sfr __at (0xFCE) TMR1L;
-
-__sfr __at (0xFCF) TMR1H;
-
-__sfr __at (0xFD0) RCON;
-volatile __RCON_t __at (0xFD0) RCONbits;
-
-__sfr __at (0xFD1) WDTCON;
-volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-__sfr __at (0xFD2) HLVDCON;
-volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-__sfr __at (0xFD3) OSCCON;
-volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-__sfr __at (0xFD5) T0CON;
-volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-__sfr __at (0xFD6) TMR0L;
-
-__sfr __at (0xFD7) TMR0H;
-
-__sfr __at (0xFD8) STATUS;
-volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-__sfr __at (0xFD9) FSR2L;
-
-__sfr __at (0xFDA) FSR2H;
-volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-__sfr __at (0xFDB) PLUSW2;
-
-__sfr __at (0xFDC) PREINC2;
-
-__sfr __at (0xFDD) POSTDEC2;
-
-__sfr __at (0xFDE) POSTINC2;
-
-__sfr __at (0xFDF) INDF2;
-
-__sfr __at (0xFE0) BSR;
-volatile __BSR_t __at (0xFE0) BSRbits;
-
-__sfr __at (0xFE1) FSR1L;
-
-__sfr __at (0xFE2) FSR1H;
-volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-__sfr __at (0xFE3) PLUSW1;
-
-__sfr __at (0xFE4) PREINC1;
-
-__sfr __at (0xFE5) POSTDEC1;
-
-__sfr __at (0xFE6) POSTINC1;
-
-__sfr __at (0xFE7) INDF1;
-
-__sfr __at (0xFE8) WREG;
-
-__sfr __at (0xFE9) FSR0L;
-
-__sfr __at (0xFEA) FSR0H;
-volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-__sfr __at (0xFEB) PLUSW0;
-
-__sfr __at (0xFEC) PREINC0;
-
-__sfr __at (0xFED) POSTDEC0;
-
-__sfr __at (0xFEE) POSTINC0;
-
-__sfr __at (0xFEF) INDF0;
-
-__sfr __at (0xFF0) INTCON3;
-volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-__sfr __at (0xFF1) INTCON2;
-volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-__sfr __at (0xFF2) INTCON;
-volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-__sfr __at (0xFF3) PRODL;
-
-__sfr __at (0xFF4) PRODH;
-
-__sfr __at (0xFF5) TABLAT;
-
-__sfr __at (0xFF6) TBLPTRL;
-
-__sfr __at (0xFF7) TBLPTRH;
-
-__sfr __at (0xFF8) TBLPTRU;
-volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-__sfr __at (0xFF9) PCL;
-
-__sfr __at (0xFFA) PCLATH;
-volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-__sfr __at (0xFFB) PCLATU;
-volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-__sfr __at (0xFFC) STKPTR;
-volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-__sfr __at (0xFFD) TOSL;
-
-__sfr __at (0xFFE) TOSH;
-
-__sfr __at (0xFFF) TOSU;
-volatile __TOSU_t __at (0xFFF) TOSUbits;
+#include "pic18f2455.c"
 
index eb962e849719e7f00060bb958c1f33ffa424b5ba..cae656d55fdb564a98899c4b32c124bc9f19aa2e 100644 (file)
@@ -1,385 +1,6 @@
 /* 
  * pic18f4550.h - PIC18F4550 Device Library Sources
- * 
- * This file is part of the GNU PIC Library.
- * 
- * July, 2006
- * The GNU PIC Library is maintained by
- *     Raphael Neider <rneider AT web.de>
- * 
- * originally designed by
- *     Vangelis Rokas <vrokas@otenet.gr>
- * 
- * $Id$
- * 
  */
 
-#include <pic18f4550.h>
-
-__sfr __at (0xF62) SPPDATA;
-volatile __SPPDATA_t __at (0xF62) SPPDATAbits;
-
-__sfr __at (0xF63) SPPCFG;
-volatile __SPPCFG_t __at (0xF63) SPPCFGbits;
-
-__sfr __at (0xF64) SPPEPS;
-volatile __SPPEPS_t __at (0xF64) SPPEPSbits;
-
-__sfr __at (0xF65) SPPCON;
-volatile __SPPCON_t __at (0xF65) SPPCONbits;
-
-__sfr __at (0xF66) UFRML;
-volatile __UFRML_t __at (0xF66) UFRMLbits;
-
-__sfr __at (0xF67) UFRMH;
-volatile __UFRMH_t __at (0xF67) UFRMHbits;
-
-__sfr __at (0xF68) UIR;
-volatile __UIR_t __at (0xF68) UIRbits;
-
-__sfr __at (0xF69) UIE;
-volatile __UIE_t __at (0xF69) UIEbits;
-
-__sfr __at (0xF6A) UEIR;
-volatile __UEIR_t __at (0xF6A) UEIRbits;
-
-__sfr __at (0xF6B) UEIE;
-volatile __UEIE_t __at (0xF6B) UEIEbits;
-
-__sfr __at (0xF6C) USTAT;
-volatile __USTAT_t __at (0xF6C) USTATbits;
-
-__sfr __at (0xF6D) UCON;
-volatile __UCON_t __at (0xF6D) UCONbits;
-
-__sfr __at (0xF6E) UADDR;
-volatile __UADDR_t __at (0xF6E) UADDRbits;
-
-__sfr __at (0xF6F) UCFG;
-volatile __UCFG_t __at (0xF6F) UCFGbits;
-
-__sfr __at (0xF70) UEP0;
-volatile __UEP0_t __at (0xF70) UEP0bits;
-
-__sfr __at (0xF71) UEP1;
-volatile __UEP1_t __at (0xF71) UEP1bits;
-
-__sfr __at (0xF72) UEP2;
-volatile __UEP2_t __at (0xF72) UEP2bits;
-
-__sfr __at (0xF73) UEP3;
-volatile __UEP3_t __at (0xF73) UEP3bits;
-
-__sfr __at (0xF74) UEP4;
-volatile __UEP4_t __at (0xF74) UEP4bits;
-
-__sfr __at (0xF75) UEP5;
-volatile __UEP5_t __at (0xF75) UEP5bits;
-
-__sfr __at (0xF76) UEP6;
-volatile __UEP6_t __at (0xF76) UEP6bits;
-
-__sfr __at (0xF77) UEP7;
-volatile __UEP7_t __at (0xF77) UEP7bits;
-
-__sfr __at (0xF78) UEP8;
-volatile __UEP8_t __at (0xF78) UEP8bits;
-
-__sfr __at (0xF79) UEP9;
-volatile __UEP9_t __at (0xF79) UEP9bits;
-
-__sfr __at (0xF7A) UEP10;
-volatile __UEP10_t __at (0xF7A) UEP10bits;
-
-__sfr __at (0xF7B) UEP11;
-volatile __UEP11_t __at (0xF7B) UEP11bits;
-
-__sfr __at (0xF7C) UEP12;
-volatile __UEP12_t __at (0xF7C) UEP12bits;
-
-__sfr __at (0xF7D) UEP13;
-volatile __UEP13_t __at (0xF7D) UEP13bits;
-
-__sfr __at (0xF7E) UEP14;
-volatile __UEP14_t __at (0xF7E) UEP14bits;
-
-__sfr __at (0xF7F) UEP15;
-volatile __UEP15_t __at (0xF7F) UEP15bits;
-
-__sfr __at (0xF80) PORTA;
-volatile __PORTA_t __at (0xF80) PORTAbits;
-
-__sfr __at (0xF81) PORTB;
-volatile __PORTB_t __at (0xF81) PORTBbits;
-
-__sfr __at (0xF82) PORTC;
-volatile __PORTC_t __at (0xF82) PORTCbits;
-
-__sfr __at (0xF83) PORTD;
-volatile __PORTD_t __at (0xF83) PORTDbits;
-
-__sfr __at (0xF84) PORTE;
-volatile __PORTE_t __at (0xF84) PORTEbits;
-
-__sfr __at (0xF89) LATA;
-volatile __LATA_t __at (0xF89) LATAbits;
-
-__sfr __at (0xF8A) LATB;
-volatile __LATB_t __at (0xF8A) LATBbits;
-
-__sfr __at (0xF8B) LATC;
-volatile __LATC_t __at (0xF8B) LATCbits;
-
-__sfr __at (0xF8C) LATD;
-volatile __LATD_t __at (0xF8C) LATDbits;
-
-__sfr __at (0xF8D) LATE;
-volatile __LATE_t __at (0xF8D) LATEbits;
-
-__sfr __at (0xF92) TRISA;
-volatile __TRISA_t __at (0xF92) TRISAbits;
-
-__sfr __at (0xF93) TRISB;
-volatile __TRISB_t __at (0xF93) TRISBbits;
-
-__sfr __at (0xF94) TRISC;
-volatile __TRISC_t __at (0xF94) TRISCbits;
-
-__sfr __at (0xF95) TRISD;
-volatile __TRISD_t __at (0xF95) TRISDbits;
-
-__sfr __at (0xF96) TRISE;
-volatile __TRISE_t __at (0xF96) TRISEbits;
-
-__sfr __at (0xF9B) OSCTUNE;
-volatile __OSCTUNE_t __at (0xF9B) OSCTUNEbits;
-
-__sfr __at (0xF9D) PIE1;
-volatile __PIE1_t __at (0xF9D) PIE1bits;
-
-__sfr __at (0xF9E) PIR1;
-volatile __PIR1_t __at (0xF9E) PIR1bits;
-
-__sfr __at (0xF9F) IPR1;
-volatile __IPR1_t __at (0xF9F) IPR1bits;
-
-__sfr __at (0xFA0) PIE2;
-volatile __PIE2_t __at (0xFA0) PIE2bits;
-
-__sfr __at (0xFA1) PIR2;
-volatile __PIR2_t __at (0xFA1) PIR2bits;
-
-__sfr __at (0xFA2) IPR2;
-volatile __IPR2_t __at (0xFA2) IPR2bits;
-
-__sfr __at (0xFA6) EECON1;
-volatile __EECON1_t __at (0xFA6) EECON1bits;
-
-__sfr __at (0xFA7) EECON2;
-
-__sfr __at (0xFA8) EEDATA;
-
-__sfr __at (0xFA9) EEADR;
-
-__sfr __at (0xFAB) RCSTA;
-volatile __RCSTA_t __at (0xFAB) RCSTAbits;
-
-__sfr __at (0xFAC) TXSTA;
-volatile __TXSTA_t __at (0xFAC) TXSTAbits;
-
-__sfr __at (0xFAD) TXREG;
-
-__sfr __at (0xFAE) RCREG;
-
-__sfr __at (0xFAF) SPBRG;
-
-__sfr __at (0xFB0) SPBRGH;
-
-__sfr __at (0xFB1) T3CON;
-volatile __T3CON_t __at (0xFB1) T3CONbits;
-
-__sfr __at (0xFB2) TMR3L;
-
-__sfr __at (0xFB3) TMR3H;
-
-__sfr __at (0xFB4) CMCON;
-volatile __CMCON_t __at (0xFB4) CMCONbits;
-
-__sfr __at (0xFB5) CVRCON;
-volatile __CVRCON_t __at (0xFB5) CVRCONbits;
-
-__sfr __at (0xFB6) ECCP1AS;
-volatile __ECCP1AS_t __at (0xFB6) ECCP1ASbits;
-
-__sfr __at (0xFB7) ECCP1DEL;
-volatile __ECCP1DEL_t __at (0xFB7) ECCP1DELbits;
-
-__sfr __at (0xFB8) BAUDCON;
-volatile __BAUDCON_t __at (0xFB8) BAUDCONbits;
-
-__sfr __at (0xFBA) CCP2CON;
-volatile __CCP2CON_t __at (0xFBA) CCP2CONbits;
-
-__sfr __at (0xFBB) CCPR2L;
-
-__sfr __at (0xFBC) CCPR2H;
-
-__sfr __at (0xFBD) CCP1CON;
-volatile __CCP1CON_t __at (0xFBD) CCP1CONbits;
-
-__sfr __at (0xFBE) CCPR1L;
-
-__sfr __at (0xFBF) CCPR1H;
-
-__sfr __at (0xFC0) ADCON2;
-volatile __ADCON2_t __at (0xFC0) ADCON2bits;
-
-__sfr __at (0xFC1) ADCON1;
-volatile __ADCON1_t __at (0xFC1) ADCON1bits;
-
-__sfr __at (0xFC2) ADCON0;
-volatile __ADCON0_t __at (0xFC2) ADCON0bits;
-
-__sfr __at (0xFC3) ADRESL;
-
-__sfr __at (0xFC4) ADRESH;
-
-__sfr __at (0xFC5) SSPCON2;
-volatile __SSPCON2_t __at (0xFC5) SSPCON2bits;
-
-__sfr __at (0xFC6) SSPCON1;
-volatile __SSPCON1_t __at (0xFC6) SSPCON1bits;
-
-__sfr __at (0xFC7) SSPSTAT;
-volatile __SSPSTAT_t __at (0xFC7) SSPSTATbits;
-
-__sfr __at (0xFC8) SSPADD;
-
-__sfr __at (0xFC9) SSPBUF;
-
-__sfr __at (0xFCA) T2CON;
-volatile __T2CON_t __at (0xFCA) T2CONbits;
-
-__sfr __at (0xFCB) PR2;
-
-__sfr __at (0xFCC) TMR2;
-
-__sfr __at (0xFCD) T1CON;
-volatile __T1CON_t __at (0xFCD) T1CONbits;
-
-__sfr __at (0xFCE) TMR1L;
-
-__sfr __at (0xFCF) TMR1H;
-
-__sfr __at (0xFD0) RCON;
-volatile __RCON_t __at (0xFD0) RCONbits;
-
-__sfr __at (0xFD1) WDTCON;
-volatile __WDTCON_t __at (0xFD1) WDTCONbits;
-
-__sfr __at (0xFD2) HLVDCON;
-volatile __HLVDCON_t __at (0xFD2) HLVDCONbits;
-
-__sfr __at (0xFD3) OSCCON;
-volatile __OSCCON_t __at (0xFD3) OSCCONbits;
-
-__sfr __at (0xFD5) T0CON;
-volatile __T0CON_t __at (0xFD5) T0CONbits;
-
-__sfr __at (0xFD6) TMR0L;
-
-__sfr __at (0xFD7) TMR0H;
-
-__sfr __at (0xFD8) STATUS;
-volatile __STATUS_t __at (0xFD8) STATUSbits;
-
-__sfr __at (0xFD9) FSR2L;
-
-__sfr __at (0xFDA) FSR2H;
-volatile __FSR2H_t __at (0xFDA) FSR2Hbits;
-
-__sfr __at (0xFDB) PLUSW2;
-
-__sfr __at (0xFDC) PREINC2;
-
-__sfr __at (0xFDD) POSTDEC2;
-
-__sfr __at (0xFDE) POSTINC2;
-
-__sfr __at (0xFDF) INDF2;
-
-__sfr __at (0xFE0) BSR;
-volatile __BSR_t __at (0xFE0) BSRbits;
-
-__sfr __at (0xFE1) FSR1L;
-
-__sfr __at (0xFE2) FSR1H;
-volatile __FSR1H_t __at (0xFE2) FSR1Hbits;
-
-__sfr __at (0xFE3) PLUSW1;
-
-__sfr __at (0xFE4) PREINC1;
-
-__sfr __at (0xFE5) POSTDEC1;
-
-__sfr __at (0xFE6) POSTINC1;
-
-__sfr __at (0xFE7) INDF1;
-
-__sfr __at (0xFE8) WREG;
-
-__sfr __at (0xFE9) FSR0L;
-
-__sfr __at (0xFEA) FSR0H;
-volatile __FSR0H_t __at (0xFEA) FSR0Hbits;
-
-__sfr __at (0xFEB) PLUSW0;
-
-__sfr __at (0xFEC) PREINC0;
-
-__sfr __at (0xFED) POSTDEC0;
-
-__sfr __at (0xFEE) POSTINC0;
-
-__sfr __at (0xFEF) INDF0;
-
-__sfr __at (0xFF0) INTCON3;
-volatile __INTCON3_t __at (0xFF0) INTCON3bits;
-
-__sfr __at (0xFF1) INTCON2;
-volatile __INTCON2_t __at (0xFF1) INTCON2bits;
-
-__sfr __at (0xFF2) INTCON;
-volatile __INTCON_t __at (0xFF2) INTCONbits;
-
-__sfr __at (0xFF3) PRODL;
-
-__sfr __at (0xFF4) PRODH;
-
-__sfr __at (0xFF5) TABLAT;
-
-__sfr __at (0xFF6) TBLPTRL;
-
-__sfr __at (0xFF7) TBLPTRH;
-
-__sfr __at (0xFF8) TBLPTRU;
-volatile __TBLPTRU_t __at (0xFF8) TBLPTRUbits;
-
-__sfr __at (0xFF9) PCL;
-
-__sfr __at (0xFFA) PCLATH;
-volatile __PCLATH_t __at (0xFFA) PCLATHbits;
-
-__sfr __at (0xFFB) PCLATU;
-volatile __PCLATU_t __at (0xFFB) PCLATUbits;
-
-__sfr __at (0xFFC) STKPTR;
-volatile __STKPTR_t __at (0xFFC) STKPTRbits;
-
-__sfr __at (0xFFD) TOSL;
-
-__sfr __at (0xFFE) TOSH;
-
-__sfr __at (0xFFF) TOSU;
-volatile __TOSU_t __at (0xFFF) TOSUbits;
+#include "pic18f2455.c"
 
index fd639c6d2e815f11c1290e312afff52081194dcf..2f9c39bffa471bec0df1f6a6f217c41dd411c14d 100644 (file)
@@ -25,7 +25,7 @@
 
 ; allocate space for stack
 stack_section  udata   0x0200
-_stack         res     63
+_stack         res     0xff
 _stack_end     res     1
 
        end
index 889d4b699ee6f8f561240d450c8f6fac1ea0e3bd..0f7777dd9c22f1b17b5a9b97aaf5768122f23e7f 100644 (file)
@@ -17843,19 +17843,13 @@ The linker organizes allocation for the code page and RAM banks.
  used.
  The compiler treats all functions of a single C file as being in the same
  code page unless it is non static.
- The compiler treats all local variables of a single C file as being in
- the same RAM bank unless it is an extern.
 \newline 
 
 \newline 
 To get the best follow these guide lines:
 \layout Enumerate
 
-make local functions static, as non static functions require code page selection
- overhead.
-\layout Enumerate
-
-Make local variables static as extern variables require RAM bank selection
+Make local functions static, as non static functions require code page selection
  overhead.
 \layout Enumerate
 
@@ -17864,10 +17858,11 @@ For devices that have multiple code pages it is more efficient to use the
  for the 16F877 use 4 separate files and i.e.
  for the 16F874 use 2 separate files.
  This way the linker can put the code for each file into different code
- pages and the compiler can allocate reusable variables more efficiently
- and there's less page selection overhead.
+ pages and there's less page selection overhead.
+\layout Enumerate
+
  And as for any 8 bit micro (especially for PIC 14 as they have a very simple
- instruction set) use 'unsigned char' whereever possible instead of 'int'.
+ instruction set), use 'unsigned char' whereever possible instead of 'int'.
 \layout Subsection
 
 Creating a device include file 
@@ -17884,7 +17879,7 @@ For generating a device include file
 Interrupt code
 \layout Standard
 
-For the interrupt function, use the keyword 'interrupt'
+For the interrupt function, use the keyword '__interrupt'
 \begin_inset LatexCommand \index{PIC14!interrupt}
 
 \end_inset 
@@ -17896,7 +17891,7 @@ For the interrupt function, use the keyword 'interrupt'
 
 
 \family typewriter 
-void Intr(void) interrupt 0
+void Intr(void) __interrupt 0
 \newline 
 {
 \newline 
@@ -18080,6 +18075,45 @@ status Collapsed
 \end_inset 
 
  disable (slightly faulty) optimization on pCode
+\layout List
+\labelwidthstring 00.00.0000
+
+-
+\begin_inset ERT
+status Collapsed
+
+\layout Standard
+
+\backslash 
+/
+\end_inset 
+
+-stack-loc
+\begin_inset LatexCommand \index{PIC14!Options!-\/-stack-loc}
+
+\end_inset 
+
+ sets the lowest address of the argument passing stack (defaults to a
+ suitably large shared databank to reduce BANKSEL overhead)
+\layout List
+\labelwidthstring 00.00.0000
+
+-
+\begin_inset ERT
+status Collapsed
+
+\layout Standard
+
+\backslash 
+/
+\end_inset 
+
+-stack-size
+\begin_inset LatexCommand \index{PIC14!Options!-\/-stack-size}
+
+\end_inset 
+
+ sets the size if the argument passing stack (default: 16, minimum: 4)
 \layout Subsection
 
 The library
@@ -18527,7 +18561,7 @@ status Collapsed
 /
 \end_inset 
 
--stack-model=[model] Used in conjuction with the command above.
+-pstack-model=[model] Used in conjuction with the command above.
  Defines the stack model to be used, valid stack models are : 
 \begin_deeper 
 \layout List
index d83a479c75dcfb110f18e17b5c2f77e36f329471..a6b24e416b3b722cb06c0f40621401c0dda0048e 100644 (file)
@@ -166,11 +166,9 @@ char *aopGet (asmop *aop, int offset, bool bit16, bool dname);
 
 bool genPlusIncr (iCode *ic);
 void pic14_outBitAcc(operand *result);
-void genPlusBits (iCode *ic);
 void genPlus (iCode *ic);
 bool genMinusDec (iCode *ic);
 void addSign(operand *result, int offset, int sign);
-void genMinusBits (iCode *ic);
 void genMinus (iCode *ic);
 
 
index 78582d50197e4193f727bbd18dfc89354bcd94ea..1f5515ed69b0c64bf642d225c55fcce2895f05de 100644 (file)
@@ -307,98 +307,6 @@ void pic14_outBitAcc(operand *result)
        }
 }
 
-/*-----------------------------------------------------------------*/
-/* genPlusBits - generates code for addition of two bits           */
-/*-----------------------------------------------------------------*/
-void genPlusBits (iCode *ic)
-{
-       FENTRY;
-       
-       DEBUGpic14_emitcode ("; ***","%s  %d",__FUNCTION__,__LINE__);
-       
-       DEBUGpic14_emitcode ("; ","result %s, left %s, right %s",
-               AopType(AOP_TYPE(IC_RESULT(ic))),
-               AopType(AOP_TYPE(IC_LEFT(ic))),
-               AopType(AOP_TYPE(IC_RIGHT(ic))));
-       /*
-       The following block of code will add two bits. 
-       Note that it'll even work if the destination is
-       the carry (C in the status register).
-       It won't work if the 'Z' bit is a source or destination.
-       */
-       
-       /* If the result is stored in the accumulator (w) */
-       //if(strcmp(aopGet(AOP(IC_RESULT(ic)),0,FALSE,FALSE),"a") == 0 ) {}
-       switch(AOP_TYPE(IC_RESULT(ic))) {
-       case AOP_ACC:
-               emitpcode(POC_CLRW, NULL);
-               emitpcode(POC_BTFSC, popGet(AOP(IC_RIGHT(ic)),0));
-               emitpcode(POC_XORLW, popGetLit(1));
-               emitpcode(POC_BTFSC, popGet(AOP(IC_LEFT(ic)),0));
-               emitpcode(POC_XORLW, popGetLit(1));
-               
-               pic14_emitcode("clrw","");
-               pic14_emitcode("btfsc","(%s >> 3), (%s & 7)",
-                       AOP(IC_RIGHT(ic))->aopu.aop_dir,
-                       AOP(IC_RIGHT(ic))->aopu.aop_dir);
-               pic14_emitcode("xorlw","1");
-               pic14_emitcode("btfsc","(%s >> 3), (%s & 7)",
-                       AOP(IC_LEFT(ic))->aopu.aop_dir,
-                       AOP(IC_LEFT(ic))->aopu.aop_dir);
-               pic14_emitcode("xorlw","1");
-               break;
-       case AOP_REG:
-               emitpcode(POC_MOVLW, popGetLit(0));
-               emitpcode(POC_BTFSC, popGet(AOP(IC_RIGHT(ic)),0));
-               emitpcode(POC_XORLW, popGetLit(1));
-               emitpcode(POC_BTFSC, popGet(AOP(IC_LEFT(ic)),0));
-               emitpcode(POC_XORLW, popGetLit(1));
-               emitpcode(POC_MOVWF, popGet(AOP(IC_RESULT(ic)),0));
-               break;
-               /*  case AOP_CRY:
-               if(pic14_sameRegs(AOP(IC_RESULT(ic)),AOP(IC_LEFT(ic)))) {
-               
-                 } else {
-                 
-                       }
-               break;*/
-       default:
-               if(pic14_sameRegs(AOP(IC_RESULT(ic)),AOP(IC_LEFT(ic)))) {
-                       DebugAop(AOP(IC_LEFT(ic)));
-                       emitpcode(POC_MOVLW, popGet(AOP(IC_LEFT(ic)),0));
-                       emitpcode(POC_BTFSC, popGet(AOP(IC_RIGHT(ic)),0));
-                       emitpcode(POC_XORWF, popGet(AOP(IC_LEFT(ic)),0));
-               } else {
-                       emitpcode(POC_MOVLW, popGet(AOP(IC_RESULT(ic)),0));
-                       emitpcode(POC_BCF,   popGet(AOP(IC_RESULT(ic)),0));
-                       emitpcode(POC_BTFSC, popGet(AOP(IC_RIGHT(ic)),0));
-                       emitpcode(POC_XORWF, popGet(AOP(IC_RESULT(ic)),0));
-                       emitpcode(POC_BTFSC, popGet(AOP(IC_LEFT(ic)),0));
-                       emitpcode(POC_XORWF, popGet(AOP(IC_RESULT(ic)),0));
-               }
-               
-               
-               pic14_emitcode("movlw","(1 << (%s & 7))",
-                       AOP(IC_RESULT(ic))->aopu.aop_dir,
-                       AOP(IC_RESULT(ic))->aopu.aop_dir);
-               pic14_emitcode("bcf","(%s >> 3), (%s & 7)",
-                       AOP(IC_RESULT(ic))->aopu.aop_dir,
-                       AOP(IC_RESULT(ic))->aopu.aop_dir);
-               pic14_emitcode("btfsc","(%s >> 3), (%s & 7)",
-                       AOP(IC_RIGHT(ic))->aopu.aop_dir,
-                       AOP(IC_RIGHT(ic))->aopu.aop_dir);
-               pic14_emitcode("xorwf","(%s >>3),f",
-                       AOP(IC_RESULT(ic))->aopu.aop_dir);
-               pic14_emitcode("btfsc","(%s >> 3), (%s & 7)",
-                       AOP(IC_LEFT(ic))->aopu.aop_dir,
-                       AOP(IC_LEFT(ic))->aopu.aop_dir);
-               pic14_emitcode("xorwf","(%s>>3),f",
-                       AOP(IC_RESULT(ic))->aopu.aop_dir);
-               break;
-       }
-       
-}
-
 #if 0
 /* This is the original version of this code.
 *
@@ -867,13 +775,6 @@ void genPlus (iCode *ic)
                IC_LEFT(ic) = t;
        }
        
-       /* if both left & right are in bit space */
-       if (AOP_TYPE(IC_LEFT(ic)) == AOP_CRY &&
-               AOP_TYPE(IC_RIGHT(ic)) == AOP_CRY) {
-               genPlusBits (ic);
-               goto release ;
-       }
-       
        /* if left in bit space & right literal */
        if (AOP_TYPE(IC_LEFT(ic)) == AOP_CRY &&
                AOP_TYPE(IC_RIGHT(ic)) == AOP_LIT) {
@@ -1291,32 +1192,6 @@ void addSign(operand *result, int offset, int sign)
        }
 }
 
-/*-----------------------------------------------------------------*/
-/* genMinusBits - generates code for subtraction  of two bits      */
-/*-----------------------------------------------------------------*/
-void genMinusBits (iCode *ic)
-{
-       symbol *lbl = newiTempLabel(NULL);
-       FENTRY;
-       DEBUGpic14_emitcode ("; ***","%s  %d",__FUNCTION__,__LINE__);
-       if (AOP_TYPE(IC_RESULT(ic)) == AOP_CRY){
-               pic14_emitcode("mov","c,%s",AOP(IC_LEFT(ic))->aopu.aop_dir);
-               pic14_emitcode("jnb","%s,%05d_DS_",AOP(IC_RIGHT(ic))->aopu.aop_dir,(lbl->key+100));
-               pic14_emitcode("cpl","c");
-               pic14_emitcode("","%05d_DS_:",(lbl->key+100));
-               pic14_outBitC(IC_RESULT(ic));
-       }
-       else{
-               pic14_emitcode("mov","c,%s",AOP(IC_RIGHT(ic))->aopu.aop_dir);
-               pic14_emitcode("subb","a,acc");
-               pic14_emitcode("jnb","%s,%05d_DS_",AOP(IC_LEFT(ic))->aopu.aop_dir,(lbl->key+100));
-               pic14_emitcode("inc","a");
-               pic14_emitcode("","%05d_DS_:",(lbl->key+100));
-               aopPut(AOP(IC_RESULT(ic)),"a",0);
-               addSign(IC_RESULT(ic), MSB16, SPEC_USIGN(getSpec(operandType(IC_RESULT(ic)))));
-       }
-}
-
 /*-----------------------------------------------------------------*/
 /* genMinus - generates code for subtraction                       */
 /*-----------------------------------------------------------------*/
@@ -1343,14 +1218,6 @@ void genMinus (iCode *ic)
                AopType(AOP_TYPE(IC_LEFT(ic))),
                AopType(AOP_TYPE(IC_RIGHT(ic))));
        
-       /* special cases :- */
-       /* if both left & right are in bit space */
-       if (AOP_TYPE(IC_LEFT(ic)) == AOP_CRY &&
-               AOP_TYPE(IC_RIGHT(ic)) == AOP_CRY) {
-               genPlusBits (ic);
-               goto release ;
-       }
-       
        /* if I can do an decrement instead
        of subtract then GOOD for ME */
        //  if (genMinusDec (ic) == TRUE)
@@ -1673,7 +1540,7 @@ void genUMult8XLit_16 (operand *left,
        FENTRY;
        if (AOP_TYPE(right) != AOP_LIT){
                fprintf(stderr,"%s %d - right operand is not a literal\n",__FILE__,__LINE__);
-               exit(1);
+               exit(EXIT_FAILURE);
        }
        
        
@@ -1788,7 +1655,7 @@ void genUMult8XLit_16 (operand *left,
                        temp = popGetTempReg();
                        if(!temp) {
                                fprintf(stderr,"ERROR: unable to allocate register. %s:%d\n",__FUNCTION__,__LINE__);
-                               exit(1);
+                               exit(EXIT_FAILURE);
                        }
                        emitpcode(POC_SWAPFW, popGet(AOP(left),0));
                        emitpcode(POC_MOVWF,  temp);