please dont rip this site

SX Microcontroller 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

	mov	temp, W	;save abcdefgh
	mov	W, <>temp	;efghabcd
	xor	temp, W	;........
	and	W, #$F		;0000abcd
	sb	Z
	mov	W, #4		;load A=0/4

	sb	temp.3
	snb	temp.2
	or	W, #2		;add B=0/2

	sb	temp.3
	snb	temp.1
	or	W, #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.
	add	pc, W
        (1 wasted word)
	retw	#0
	retw	#1
        (1 wasted word)
	retw	#2
        (3 spare words)
	retw	#3
        (7 spare words)
	retw	#4
        (15 spare words)
	retw	#5
        ...

file: /Techref/scenix/lib/math/bit/whatbit_sx.htm, 1KB, , updated: 2004/6/10 14:40, local time: 2024/3/28 05:49,
TOP NEW HELP FIND: 
18.232.88.17: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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.piclist.com/techref/scenix/lib/math/bit/whatbit_sx.htm"> SX Microcontroller Bit Math Method - Which bit is set?</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 a nice message (short messages are blocked as spam) 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?

  PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found
- Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
 

Welcome to www.piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .