Thanks Henrik.
Yes, I have had MPLAB X installed (latest) and was just playing around and got a successful assembly. Was getting some errors and maybe you can help me confirm what I was doing wrong (using 16F1847).
I had -- (with the 16F88)
@ DEVICE pic16F88, INTRC_OSC_NOCLKOUT
''' System Clock Options
@ DEVICE pic16F88, WDT_ON
''' Watchdog Timer
ETC
but apparently the 1847 needs a hashtag like -- ?
#CONFIG ; F1847.
__config _CONFIG1, _FOSC_INTOSC & _WDTE_ON & _PWRTE_ON & _MCLRE_OFF & _CP_OFF & _BOREN_OFF
__config _CONFIG2, _PLLEN_OFF & _LVP_OFF
#ENDCONFIG
also -- found this,
@ ERRORLEVEL -306 ; turn off crossing page boundary message
which got rid of my boundry error. ?
does it FIX the boundry problem or just get rid of the message ? THANKS MUCH FOR HELP.
Think I have it working right now.
Bookmarks