I am still on a learning curve here so please bear with me.

I have been trying to make use of byte0 and byte1. Shouldn't this flash leds on portb? Must be doing something wrong.

Thanks, Don

Code:
TRISB = %00000000

loop:   

x var word
x = %00101111
       
       portb = x.byte0          
       pause 1000
       portb = x.byte1
       pause 500
       
      
        Goto loop             
  End