Hello, I've gotten to dabbling with some old pics that I've had stashed away this holiday, and I am experiencing something strange with one of the ports.I'll
try to make the scenario as clear as possible.

I'm going through the old "Pic Robotics" book by John Iovine. I haven't tinkered with PIC stuff in a year or two so I figured it would be a good idea to test them with the simple "wink" program using 2 LEDS. I won't post the actual tech drawing here as I'm sure most of you are familiar with it. In any case, only one LED is blinking(rb0).The other(rb1) isn't doing anything.

I've read the PICs and went over the circuit several times and still can't figure out whats going on.I've also programmed two different pics, but I get the same result each time.I'm using the EPIC Plus if that helps at all. Does anyone have any idea what I could be doing wrong?

Here's the code in case someone sees something I'm missing.Thanks for looking!

Shawn

start:
high portb.0
low portb.1
pause 500
low portb.0
high portb.1
pause 500
goto start