another update... im still working on trying to fix the computer in my car. its made by mitsubishi, adn apparently the caps go bad, and need to be changed.

i made a new board, and it all seems good. i think the old PIC is still good too (im not sure though). i tried to flash an LED on RF0, but its not working.

i can program fine, and then i can read the code from the PIC and its all the same. i think im just forgetting something somewhere.. and remember, im still somewhat new to this...


DEFINE OSC 20
define xt_OSC
CMCON = 7
ADCON1 = 7

start:
high portf.0

Pause 1000
low portf.0

pause 1000
GoTo start

End