Hi.

I'm trying to learn how to program PIC's, using a swedish education material......And I have sucessfully made a few programs.
When I tried to use ICSP, I got some problems and I suspected that my PBP was too old, so I upgraded to 2.60.

Now I get compilation errors every time, even when I try to compile old programs that worked before!

ERROR Line 11: LOOP without a matching DO. (blink2.pbp)
ERROR Line 15: Syntax error. (blink2.pbp)


loop: HIGH PORTB.0 'Tänd lysdiod (line 11)
PAUSE 100 'Vänta 100 ms
LOW PORTB.0 'Släck lysdiod
PAUSE 900 'Vänta 900 ms
GOTO loop 'Hoppa tillbaka till loop (line 15)
END

What's up? Am I doing something wrong/different?