setb RA.4 sb C clrb RA.4
ie: Assume the bit is one, then change to 0 if it is not.
Saves 1 instruction over the more standard:
snb C ; load the data setb RA.4 sb C clrb RA.4
This macro...
COPY_BIT MACRO varA_bit,varB_bit
NOEXPAND
snb varA_bit
setb varB_bit
sb varA_bit
clrb varB_bit
ENDM
...will produce the same output if called like this:
COPY_BIT 3.0,5.4
but can be used on any current bank registers.
Note that according to SASM 1.4 manual macro arguments can not be reserved symbols, e.g. RA, RB, etc.
See also:
| file: /Techref/scenix/lib/math/bit/cuabrr_sx.htm, 1KB, , updated: 2004/6/10 14:40, local time: 2012/5/25 14:55,
38.107.179.233: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/scenix/lib/math/bit/cuabrr_sx.htm"> SX Microcontroller Bit Math Method Copy unaligned bits from one register to another:</A> |
| Did you find what you needed? |
|
Ashley Roll has put together a really nice little unit here. Leave off the MAX232 and keep these handy for the few times you need true RS232! |
.