Quote Originally Posted by Bruce View Post
...T1[INDEX] = ((CAP1BUFH<<8) + CAP1BUFL)...
I did something very similar and was very concerned about code space so I wrote the same kind of code this way which makes it, in my case, 17 words less:
Code:
...
Temp.Highbyte = CAP1BUFH
Temp.Lowbyte  = CAP1BUFL
T1[INDEX]     = Temp
...