> From: Dmitry Kiryashov > Subject: changing Carry bit according to some another > > Hi guys. > > The question is as if I trying to change Carry (STATUS) > if some another bit is set. I suppose the next procedure for that: > > btfsc some_bit > incfsz STATUS,F > nop > > Any suggestions ? > > WBR Dmitry. > As a rule, instructions that do an arithmetic operation can not place their results into STATUS, as it has very defined rules for changing. In this case, I believe incfsz STATUS,F will not have any effect on the content of STATUS. Dave Reinagel daver@cisco.com