With a 16F690 and PBP, I’m having a problem driving simultaneous port outputs which are connected to LEDs via individual 2k Ohm resistors to ground.
With this first bit of code, I can illuminate one or two LEDs as one would expect.

Trisc = %00000000

Portc = %00000001 ‘ lights the first LED
Pause 1000
Portc = %00000011 ‘ lights both LEDs

Now, the below code SHOULD do the same thing as the above code which is
light the first LED then light the second LED while not turning off the first LED.
Nope, the first LED gets extinguished.

Trisc = %00000000

Portc.0 = 1 ‘ lights the first LED
Pause 1000
Portc.1 = 1 ‘ the first LED goes dark and the second LED lights!!!!


I have found some other older posts that talk of this same issue but they were running several LEDs with one dropping resistor which turned out to be their problem.
I have a separate resistor for each LED.

HELP!

Bob