I have placed an LED on pin 3 of port b. When I used these statements:
PORTB.3 = 1 or PORTB = %11111111
The LED on pin 3 of port b turns on.

But when I use this statement:
PORTB = 1
The LED does not turn on.

How can I set all of port b high or low with one statement?