twentysixdb 0 Report post Posted September 12, 2009 Hi Again: My original post has not been screened by the moderator; however, I have the answer. btfss _status, Z Is the ONLY permutation that will compile. The space after the ',' and a capital 'Z' are req'd. Cheers! Quote Share this post Link to post Share on other sites
Pavel 0 Report post Posted September 12, 2009 Hi Again: My original post has not been screened by the moderator; however, I have the answer. btfss _status, Z Is the ONLY permutation that will compile. The space after the ',' and a capital 'Z' are req'd. Cheers! Spaces after comma or Z don't make any difference for compiler. Z has to be capital because that's how it is defined in system includes. You can use number instead: #include <system.h> void main() { //Instructions below are equal asm { btfss _status, Z btfss _status,Z;no spaces after comma or Z btfss _status,2 } } Regards, Pavel Quote Share this post Link to post Share on other sites