Thank you Henrik !


Ok,
I found the file M16F81X.INC
, but do not understand what is active.

Example the include file has both ,

WDT_ON equ 3FFB0004h ; XX XXXX XXXX X1XX
WDT_OFF equ 3FFB0000h ; XX XXXX XXXX X0XX

How do you tell what is on or off?


Is their a Document that tells how to read .inc files ?



@ __CONFIG _INTRC_IO & _WDT_OFF & _PWRTE_ON & _LVP_OFF & _CP_OFF & _MCLR_OFF 'FOR 819


@ __CONFIG
_INTRC_IO
----------------------

& _WDT_OFF

WDT_ON equ 3FFB0004h ; XX XXXX XXXX X1XX
WDT_OFF equ 3FFB0000h ; XX XXXX XXXX X0XX
----------------------

PWRTE_ON
Not in File
----------------------

& _LVP_OFF
LVP_ON equ 3F7F0080h ; XX XXXX 1XXX XXXX
LVP_OFF equ 3F7F0000h ; XX XXXX 0XXX XXXX
----------------------

& _CP_OFF
Not in File
----------------------

& _MCLR_OFF
MCLR_ON equ 3FDF0020h ; XX XXXX XX1X XXXX


MCLR_OFF equ 3FDF0000h ; XX XXXX XX0X XXXX
----------------------


What does _INTRC_IO mean? I cant fing it in the .INC file





Thanks again for your help.

LarryD