Hello,
I use the version PBP 4.0.0.0 and MPLAB 8.92.
the quartz is a 4mhz.

I can send you, if you want the program of my editing, if this allows you to better understand.
pascal

version 4.0.0.0 is the microcode studio version
pbp version is v3.x.x.x or 2.xx

I would like to know if I can and how to program the fuse bits in pbp and know how this is written.
my previous reply is one way that will do it for pbp 3.xxx

its done differently for pbp 2.xxx . I have not used that old version for several years and can offer no help for it
meconfig suggests this

Code:
ASM
  __config  _CONFIG1L, _PLLDIV_1_1L & _CPUDIV_OSC1_PLL2_1L & _USBDIV_2_1L
  __config  _CONFIG1H, _FOSC_HSPLL_HS_1H & _FCMEN_OFF_1H & _IESO_OFF_1H
  __config  _CONFIG2L, _PWRT_OFF_2L & _BOR_ON_2L & _BORV_3_2L & _VREGEN_ON_2L
  __config  _CONFIG2H, _WDT_ON_2H & _WDTPS_512_2H
  __config  _CONFIG3H, _CCP2MX_ON_3H & _PBADEN_OFF_3H & _LPT1OSC_OFF_3H & _MCLRE_OFF_3H
  __config  _CONFIG4L, _STVREN_ON_4L & _LVP_OFF_4L & _XINST_OFF_4L & _DEBUG_OFF_4L
  __config  _CONFIG5L, _CP0_OFF_5L & _CP1_OFF_5L & _CP2_OFF_5L & _CP3_OFF_5L
  __config  _CONFIG5H, _CPB_OFF_5H & _CPD_OFF_5H
  __config  _CONFIG6L, _WRT0_OFF_6L & _WRT1_OFF_6L & _WRT2_OFF_6L & _WRT3_OFF_6L
  __config  _CONFIG6H, _WRTC_OFF_6H & _WRTB_OFF_6H & _WRTD_OFF_6H
  __config  _CONFIG7L, _EBTR0_OFF_7L & _EBTR1_OFF_7L & _EBTR2_OFF_7L & _EBTR3_OFF_7L
  __config  _CONFIG7H, _EBTRB_OFF_7H
ENDASM