No errors when compiling. It looks as if the chip isn't starting. Help? (Also, this forum changes Caps. Makes the code look like the variables are whacked....

@ device pic12F675,intrc_osc_noclkout,wdt_off,mclr_off,prot ect_off

'Output variables and port assignment.
Output GPIO.1
Led1 var GPIO.1
low led1

output GPIO.2
Led2 var GPIO.2
low led2

pause 50

loop:
high led1
pause 500
low led1
pause 100
high led2
pause 500
low led2
pause 100

goto loop

end