Well, it might sound stupid but, how can I break this long configuration line in two as it is too long to be printed or displayed on-screen? This line compiles OK:

@ __CONFIG _CONFIG1, _DEBUG_OFF & _LVP_OFF & _FCMEN_OFF & _IESO_OFF & _BOR_ON & _CP_ON & _MCLRE_ON & _PWRTE_ON & _WDT_ON & _HS_OSC


The idea of multiple @ __CONFIG lines won't work:

@ __CONFIG _CONFIG1, _DEBUG_OFF & _LVP_OFF & _FCMEN_OFF & _IESO_OFF
@ __CONFIG _CONFIG1, _BOR_ON & _CP_ON & _MCLRE_ON & _PWRTE_ON & _WDT_ON & _HS_OSC

It produces an Overwriting previous address contents (2007) error.

Thanks for the care,
Ioannis