please dont rip this site

PIC Microcontoller Math Method

Multiply 8 bits times an 8 bit constant

From http://www.myke.com/basic.htm

Sometimes you have to do a fast multiply on a register value with a constant. in 16 Bit Operations and Macros, I go through a number of methods, but I use the following Macro for this purpose for a single byte:
FastMul Macro Register, Constant
 variable i = Constant
 clrw                           ;  Put the Product in "w"
 while (i != 0)
 if ((i & 1) != 0)
  addwf  Register, w            ;  Add the Current Contents of "Register" to "w"
 endif
 bcf     STATUS, C              ;  Shift up the Register's Contents
 rlf     Register, f
 i = i / 2                      ;  Shift down the counter value
 endw
 endm

Comments:


file: /Techref/microchip/math/mul/8xconst8-mp.htm, 1KB, , updated: 2010/4/5 10:41, local time: 2024/3/29 00:22,
TOP NEW HELP FIND: 
35.173.181.0: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://massmind.org/techref/microchip/math/mul/8xconst8-mp.htm"> Multiply 8 bits times an 8 bit constant</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?

 

Welcome to massmind.org!

 

Welcome to massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .