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.
file: /Techref/scenix/lib/math/bit/cuabrr_sx.htm, 1KB, , updated: 2004/6/10 13:40, local time: 2024/11/5 11:45,
3.129.45.150:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©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/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? |