Another of Dmitry Kiryashov's routines is this sequence of instructions for swapping bit pairs in a byte in five instructions/cycles.
; (c) 1998 by Dmitry Kirashov movwf X ; Save the Incoming Byte in ; a temporary register ; w = X = ABCDEFGH andlw 0x055 ; w = 0B0D0F0H addwf X, f ; X = ABCDEFGH + 0B0D0F0H rrf X, f ; X = (ABCDEFGH + 0B0D0F0h) >> 1 addwf X, w ; w = BADCFEHG
Wow, huh?
file: /Techref/microchip/math/bit/swapbits.htm, 1KB, , updated: 2004/12/6 11:55, local time: 2024/11/19 23:52,
18.119.132.236: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://linistepper.com/Techref/microchip/math/bit/swapbits.htm"> PIC Microcontoller Bit Math Method Swap two bits in a register</A> |
Did you find what you needed? |