Obviously setting, or clearing a bit is done with bsf and bcf. Toggleing a bit is done with XOR and a mask. But what if you don't know which bit to set, clear or toggle before the program is compiled?
From: http://www.myke.com/basic.htm
There are two ways of implementing this operation based on where the input value is relative to the output value. If they are the same (ie the operation is to complement a specific bit), the code to be used is simply:movlw 1 << BitNumber ; Complement Specific Bit for "NOT" xorwf BitRegister, fIf the bit is in another register, then the value stored is the complement of it:
bcf Result ; Assume that the Input Bit is Set btfss Bit ; - If it is Set, then Result Correct bsf Result ; Input Bit Reset, Set the Result
file: /Techref/microchip/math/bit/flipbit.htm, 1KB, , updated: 2004/12/6 11:55, local time: 2024/11/21 23:04,
18.220.200.197:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/techref/microchip/math/bit/flipbit.htm"> Toggle or NOT or flip bit number X</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.