please dont rip this site

PIC Microcontoller Bit Math Method


Which bit is set?

Dmitry Kiryashov [zews at AHA.RU] says:

...to convert byte mask back into number. I suggest that somebody else probably has successfully researched this before. This is what I've discovered... It takes 12 clocks/words
;       W before -> W after
;       abcdefgh -> 00000ABC
;       10000000 -> 7 = 4+2+1
;       01000000 -> 6 = 4+2+0
;       00100000 -> 5 = 4+0+1
;       00010000 -> 4 = 4+0+0
;       00001000 -> 3 = 0+2+1
;       00000100 -> 2 = 0+2+0
;       00000010 -> 1 = 0+0+1
;       00000001 -> 0 = 0+0+0

        movwf   temp    ;save abcdefgh
        swapf   temp,W  ;efghabcd
        xorwf   temp,F  ;........
        andlw   0xF     ;0000abcd
        skpz
        movlw   4       ;load A=0/4

        btfss   temp,3
        btfsc   temp,2
        iorlw   2       ;add B=0/2

        btfss   temp,3
        btfsc   temp,1
        iorlw   1       ;add C=0/1
                        ;W holds 7..0 of result

Marc [marc at AARGH.FRANKEN.DE] says:

You can make it a table-read, and fill the gaps with other sub functions. Under the presumption that you can make use of any area of 3+ words in size, this method uses 6 cycles (incl call/ret) and 11 words.
        addwf   pc,f
        (1 wasted word)
        retlw   0
        retlw   1
        (1 wasted word)
        retlw   2
        (3 spare words)
        retlw   3
        (7 spare words)
        retlw   4
        (15 spare words)
        retlw   5
        ...

Code:

Comments:


file: /techref/microchip/math/bit/whatbit.htm, 3KB, , updated: 2009/4/16 13:48, local time: 2009/11/22 09:45,
TOP NEW HELP FIND: 
38.107.191.102:LOG IN
©2009 PLEASE DON'T RIP! DO: LINK / DIGG! / MAKE!

 ©2009 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?
Please DO link to this page! Digg it!
<A HREF="http://www.piclist.com/techref/microchip/math/bit/whatbit.htm"> PIC Microcontoller Bit Math Method </A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 
DON'T THROW IT AWAY! We part out dead printers, faxes, and other small mechanical items for hobby use and to support our web sites. And we pay shipping in California or pick up in San Diego North County. Call 1-619-652-0593 or email jamesnewton@massmind.org
 

Robotics nuts!

Check out http://www.verinet.com/~dlc/ email: dlc@verinet.com... 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!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .