On Wed, 30 Aug 1995 22:51:20 +0200, Fernando Soares said: > The carry bit is not affected be INCF or DECF instructions. Only the zero > bit is affected. The instructions that affect the carry bit are: [useful list of instructions deleted] I suppose I am being nitpicky, but I think it should be pointed out that any instruction with STATUS as its destination can affect the carry. So while INCF and DECF usually don't affect the carry, INCF STATUS will. While I've never seen any reason to INCF or DECF STATUS, I have seen code that uses RRF STATUS and RLF STATUS. Cheers, Eric