I have moved my LED to RB0 and change my code, but not one of them are working now.
Am I missing something?


<code>
&nbsp;&nbsp;Include "Modedefs.bas"

&nbsp;&nbsp;DEFINE OSC 4 ' Set the Xtal frequency to 4mHz

&nbsp;&nbsp;LEDPin VaR PORTB.0
&nbsp;&nbsp;i var byte
Main:
&nbsp;for i = 1 to 10
&nbsp;&nbsp;High LEDPin
&nbsp;&nbsp;Pause 400
&nbsp;&nbsp;Low LEDPin
&nbsp;&nbsp;Pause 400
&nbsp;next i
end
</code>