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
Two bits will be "ORed" together to find set/reset a third bit. The result is expected to be false and when either bit is set, the result is true:bcf Result ; Assume the result is False btfss BitA ; If BitA != 0 then result is True btfsc BitB ; If BitB == 0 then result is False bsf Result ; Result is True, Set the Bit
See also:
| file: /Techref/microchip/math/bit/orbits.htm, 1KB, , updated: 2004/12/6 12:00, local time: 2012/2/9 17:56,
38.107.179.234: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.piclist.com/techref/microchip/math/bit/orbits.htm"> PIC Microcontoller Bit Math Method </A> |
| Did you find what you needed? |
|
Support the PICList by honoring its finest. |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.