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
See also:
| file: /Techref/microchip/math/bit/flipbit.htm, 1KB, , updated: 2004/12/6 12:55, local time: 2012/5/24 03:36,
38.107.179.232:LOG IN |
| ©2012 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://www.ecomorder.com/techref/microchip/math/bit/flipbit.htm"> Toggle or NOT or flip bit number X</A> |
| Did you find what you needed? |
|
Ubicom SX18 thru SX52, PIC 16c5X compatibile, 50 to 75 MIPS microcontrollers! Now US customers can buy the Excellent SXDev from SXList.com for $150 + $15 import fee + s&h (~ $180 total+tax in CA) |
.