Cliff Griffin lists several picbasic pro optimizations at http://www.rcfaq.com/PIC/optimize.htm. Are there more optimization tips?


@ incf _Time ,1
This compiles two words shorter, but is functionally equivalent to
Time = Time + 1

If... AND... Then's
Using two IF commands saves five words

looptest:
'if (i=1) and (k=1) then looptest

Instead, use this technique:
if i=1 then
if k=1 then looptest