Quote Originally Posted by PICante View Post
This is the last part of my untouched inc file:
That is the inc file from MPASM, do not modify it. That is where you get info about the chip.

The inc file you modify is in the PBP directory. It looks like this.
Code:
       NOLIST
    ifdef PM_USED
        LIST
        include 'M16F88.INC'	; PM header
 ;       device  pic16F88, hs_osc, wdt_on, lvp_off, protect_off
        XALL
        NOLIST
    else
        LIST
        LIST p = 16F88, r = dec, w = -302
        INCLUDE "P16F88.INC"	; MPASM  Header
  ;      __config _CONFIG1,_INTRC_IO& _WDT_ON & _LVP_OFF & _CP_OFF
        NOLIST
    endif
        LIST
Notice the ';' That is a comment for this type of file. The two lines between LIST and LIST with comments are the lines to change or if setting the fuses in code space comment out.