CDlite to MicroCode Studio
I have to decided to migrate my simple hobby programing from CDLITE to MicroCode Studio
in doing so I ran into a little problem.
when I coped and pasted from CDLITE to MicCode
I get a trying to redefine error
after researching the problem here. I replace this
@ DEVICE pic12F629
@ DEVICE pic12F629, INTRC_OSC_NOCLKOUT
@ DEVICE pic12F629, WDT_ON
@ DEVICE pic12F629, MCLR_OFF
@ DEVICE pic12F629, CPD_OFF
@ DEVICE pic12F629, BOD_OFF
@ DEVICE pic12F629, PWRT_ON
@ DEVICE pic12F629, PROTECT_OFF
with this
pic12F629
_INTRC_OSC_NOCLKOUT
_WDT_ON
_MCLR_OFF
_CPD_OFF
_BOD_OFF
_PWRT_ON
_PROTECT_OFF
and it compiled but I'm not sure if this IS the currect way of doing it.
like I said I'm only a hobbyist doing simple programming (and having fun learning)
thank you for any and all help