Hi Tony. Tony Nixon wrote: > > Just mucking around with code and the PIC does not seem to like this > combination. Weird things start happening. > > incf FSR > bcf FSR,7 Will result to range 00..7F > bsf FSR,6 Will result to range 40..7F Also you will get some jumps. Increments from 0x40 to 0x41,0x42,...,0x7E,0x7F are ok. But instead of 7F -> 80 we actually will get 0x7F -> 0xC0 I guess that's the "strange" things you have get ;) WBR Dmitry.