Hello,

What is the proper technique for setting configuration values?
The below works fine, but, being all in one line, it is hard to read vs the older style below it.


#CONFIG
__config _INTRC_OSC_NOCLKOUT & _WDT_OFF & _MCLRE_OFF & _CP_OFF & _BOD_ON & _IESO_OFF & _FCMEN_OFF & _PWRTE_ON


#ENDCONFIG


'@ DEVICE PIC16F684
'@ DEVICE INTRC_OSC_NOCLKOUT
'@ DEVICE WDT_OFF
'@ DEVICE MCLR_OFF
'@ DEVICE BOD_ON
'@ DEVICE IESO_OFF
'@ DEVICE FCMEN_OFF
'@ DEVICE PWRT_ON

Thanks,