please dont rip this site

SX Microcontroller Bit Math Method


Setting bit number X

Tracy Smith says

Here are a couple of ideas for getting 1<<TestBit (10 cycles):
2^n:
	clr	W
	snb	TestBit.2
	mov	W, #%11111100
	add	TestBit, W

	mov	W, ++TestBit
	snb	TestBit.1
	or	TestBit, W

	inc	TestBit

	snb	C
	swap	TestBit

.........
another way (7 cycles [including the call])

two_to_n:
	and	W, #7
	add	PC, W
	retw	#1
	retw	#2
	retw	#4
	retw	#8
	retw	#$10
	retw	#$20
	retw	#$40
	retw	#$80


............
or probably more to the point

	mov	W, Rb
	mov	portb_shadow, W

	sb	TestBit.2
	swap	portb_swadow


	sb	TestBit.0
	rl	portb_shadow

	mov	W, #%10000000
	sb	TestBit.1
	mov	W, #%00100000

	and	portb_shadow, W

	snb	Z
	jmp	_the_bit_is_set

.lo

Kevin Blain says:

	clrf    mask    ; empty the mask

; a file called bit contains the 0 to 7 value of the bit position

	inc	bit	; make it 1 to 8, so decfsz works nicely
	setb	C	; set the carry flag. This will be rotated in 'bit' times
:loop
	rl	mask
	decsz	bit	; skip out after 'bit' times.
	jmp	loop
.....               ; rest of code...

Of course, it would be good to ensure that bit is not greater than 7 when
entering the routine.

see: http://www.infosite.com/%7Ejkeyzer/piclist/1999/Nov/0018.html


file: /techref/scenix/lib/math/bit/setbit_sx.htm, 1KB, , updated: 2004/6/10 13:40, local time: 2008/11/21 01:00,
TOP NEW HELP FIND: 
38.103.63.58:LOG IN
©2008 PLEASE DON'T RIP! DO: LINK / DIGG! / MAKE!

 ©2008 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://piclist.com/techref/scenix/lib/math/bit/setbit_sx.htm"> SX Microcontroller Bit Math Method - Setting bit number X</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be reviewed) Just type in the box and press the Post button. (HTML welcomed!): 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: 
Did you find what you needed?

  PICList 2008 contributors:
o List host: MIT, Site host massmind.org, Top posters @20081121 Apptech, Jinx, Xiaofan Chen, olin piclist, Vitaliy, William \Chops\ Westfield, Tamas Rudnai, Alan B. Pearce, JonnyMac, Gerhard Fiedler,
* 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: Shultz Electronics, Timothy Weber, on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
  'What can I do?' - SiCKO

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .