This is all I have, at this point I was just trying to get the thing to do something in this case the leds on the different ports do switch on and off.

@ Device PWRT_OFF
@ Device MCLR_OFF
@ Device INTRC_OSC
@ Device BOR = 0
@ Device Debug_Off

OSCCON = %01110000
OPTION_REG = %11111111
TRISB = %00101010


loop:

TRISB = %00101010
Pause 1
PortB = 1
TRISB = %11010101
Pause 1
PortB = 1
TRISB = %00101010
Pause 1
goto loop

End