This:

Code:
@MyConfig = _XT_OSC & _WDT_ON & _MCLRE_ON & _CP_OFF 
@MyConfig = MyConfig & _MCLRE_ON & _BOR_OFF 
@ __config  MyConfig
should be:


Code:
@MyConfig1 = _XT_OSC & _WDT_ON & _MCLRE_ON & _CP_OFF 
@MyConfig2 = MyConfig & _MCLRE_ON & _BOR_OFF 
@ __config  MyConfig1 & MyConfig2
Also where are your include files for the DT-INTS ?

Be sure to select the correct chip before compilation.


Ioannis