Also:
Code:
I have a lookup table with 4-bit numbers m=0..15. A value t should be scaled according to theese numbers, so that
s = t * m/16
Rather than using 16-bit multiplication followed by s>>4, I found a much faster code. As can be seen, the code can be carried out for e.g. 7-bit m-values as well.
-------------------- clrf s movf t, W bcf STATUS, C btfsc m, 0 addwf s, F rrf s, F bcf STATUS, C btfsc m, 1 addwf s, F rrf s, F bcf STATUS, C btfsc m, 2 addwf s, F rrf s, F bcf STATUS, C btfsc m, 3 addwf s, F rrf s, F btfsc STATUS, C incf s, F ;nearest value -----------------------
Regards, Anders Jansson +
Comments:
file: /Techref/microchip/math/scale/index.htm, 2KB, , updated: 2007/2/8 10:42, local time: 2024/11/21 22:15,
18.191.189.124: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? <A HREF="http://sxlist.com/techref/microchip/math/scale/index.htm"> PIC Microcontoller Basic Math Scaleing Methods</A> |
Did you find what you needed? |
Welcome to sxlist.com!sales, advertizing, & kind contributors just like you! Please don't rip/copy (here's why Copies of the site on CD are available at minimal cost. |
Welcome to sxlist.com! |
.