try
Code:
@ __CONFIG _INTRC_OSC_NOCLKOUT & _WDT_ON & _PWRTE_ON & _MCLRE_OFF & _PWRTE_ON & _BODEN_ON & _CPD_OFF & _CP_OFF
now maybe you'll get the Overwriting previous address contents(2007) warning, just open 12F629.INC file in the PBP folder and comment-out all default config fuses. it should looks like
Code:
;****************************************************************
;*  12F629.INC                                                  *
;*                                                              *
;*  By        : Leonard Zerman, Jeff Schmoyer                   *
;*  Notice    : Copyright (c) 2005 microEngineering Labs, Inc.  *
;*              All Rights Reserved                             *
;*  Date      : 08/31/05                                        *
;*  Version   : 2.46a                                           *
;*  Notes     :                                                 *
;****************************************************************
        NOLIST
    ifdef PM_USED
        LIST
        include 'M12F629.INC'	; PM header
        ;device  pic12F629, intrc_osc_noclkout, wdt_on, mclr_on, protect_off
        XALL
        NOLIST
    else
        LIST
        LIST p = 12F629, r = dec, w = -302
        INCLUDE "P12F629.INC"	; MPASM  Header
        ;__config _INTRC_OSC_NOCLKOUT & _WDT_ON & _MCLRE_ON & _CP_OFF
        NOLIST
    endif
        LIST
Recompile and TADA, no more error message... if you have selected MPASM to compile your code. If you're using MPLAB it should work. Unless, post your code here.