Some of my simple MACROs ; Macros for simplifying using the Status bits IF_ZERO macro btfsc STATUS,Z endm IF_NOT_ZERO macro btfss STATUS,Z endm IF_NEGATIVE macro btfss STATUS,C endm IF_NOT_NEGATIVE macro btfsc STATUS,C endm IF_CARRY macro btfsc STATUS,C endm IF_NOT_CARRY macro btfss STATUS,C endm -- http://www.piclist.com hint: To leave the PICList mailto:piclist-unsubscribe-request@mitvma.mit.edu