Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Wait_Loop movf A,W
andwf B,W
andwf C,W
btfsc STATUS,Z
goto Wait_Loop ; result is zero
;
; ; ANDed result is not zero
Wait_Loop movf Data,W
andlw b'00010101' ; AND only bit 0,2,4
btfsc STATUS,Z
goto Wait_Loop ; result is zero
;
; ; ANDed result is not zero
Thanks! where did you read it? or did you guess it by your own?
No no, I understand everything well I just want to learn more about such tricks but I know very well what do each of the instructions do