I tried this code and that should work:

'flash that led!
@ device pic12F675, intrc_osc, wdt_on, pwrt_on, mclr_off, protect_off

ANSEL = 0
CMCON = 7
TRISIO = 0
GPIO = 0

LED VAR GPIO.5

loop:
Toggle led
Pause 100
goto loop

End