#include <xc.h>
#include <stdint.h>
/* These are my standard configuration word setups for development. Set as desired for production. */
/* CONFIG1H @ 0x300001 */
#pragma config IESO=OFF,FCMEN=OFF,PRICLKEN=ON,PLLCFG=OFF,FOSC=HSMP // Fosc between 4MHz - 16MHz
/* CONFIG2L @ 0x300002 */
#pragma config BOREN=OFF,PWRTEN=ON
/* CONFIG2H @ 0x300003 */
#pragma config WDTEN=OFF
/* CONFIG4L @ 0x300006 */
#pragma config LVP=OFF,STVREN=OFF
void __interrupt(high_priority) isrH(void) {
// high priority interrupt code goes here
}
void __interrupt(low_priority) isrL(void) {
// low priority interrupt code goes here
}
int main(void) {
// insert code here
return 0;
}