Hi Darrel

thanks again for your reply

I already finished the small project by setting epic manualy
which is not a good idea as i did a lot of programming to test the project hihi (know the epic win menu's by hart)

This is what i get if i try to compile this small pbp code
I use PBP 2.43, codestudio and epic 2.41
I did select 12F629 as device

Error UNTITLED.ASM 40:[235] opcode expected instead of '__config'

Here is the pbp code:



@ __config _EC_OSC & _WDT_ON & _MCLRE_OFF & _CP_OFF
CMCON = 7 ' Set GP<2:0> to Digital, Disable comparator
TRISIO = %011001 ' Set GP<2:1> to Output

loop:
high gpio.2
pause 500
low gpio.2
pause 500
goto loop

Here is my 12F629.INC file which is in c:\pbp\pbp243\

;************************************************* ***************
;* 12F629.INC *
;* *
;* By : Leonard Zerman, Jeff Schmoyer *
;* Notice : Copyright (c) 2002 microEngineering Labs, Inc. *
;* All Rights Reserved *
;* Date : 09/27/02 *
;* Version : 2.43 *
;* Notes : *
;************************************************* ***************
NOLIST
ifdef PM_USED
LIST
include 'M12F629.INC' ; PM header
device pic12F629, intrc_osc, wdt_on, pwrt_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

Thanks again for your help