;-----------------------------------------------------------------------------:
; 8bit/8bit Unsigned Division
;
; Register Variables
; Call: var1 = dividend (0x00..0xff)
; var2 = divisor (0x01..0x7f)
; mod = <don't care>
; lc = <don't care> (high register must be allocated)
;
; Result:var1 = var1 / var2
; var2 = <not changed>
; mod = var1 % var2
; lc = 0
;
; Size = 11 words
; Clock = 66..74 cycles (+ret)
; Stack = 0 byte
div08u: clr mod ;initialize variables
ldi lc,8 ; mod = 0; lc = 8;
;---- calculating loop
lsl var1 ;var1 = var1 << 1;
rol mod ;mod = mod << 1 + carry;
cp mod,var2 ;if (mod => var2) {
brcs PC+3 ; mod -= var2; var1++;
inc var1 ; }
sub mod,var2 ;/
dec lc ;if (--lc > 0)
brne PC-7 ; continue loop;
ret
See also:
| file: /Techref/atmel/avr/div8x8sw-ec.htm, 1KB, , updated: 2007/9/14 17:14, local time: 2012/2/10 06:01,
38.107.179.232: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/atmel/avr/div8x8sw-ec.htm"> Atmel AVR, atmega, Microcontroller, embedded controller, math, division, 8x8, elm-chan.org</A> |
| Did you find what you needed? |
|
Ubicom SX18 thru SX52, PIC 16c5X compatibile, 50 to 75 MIPS microcontrollers! Now US customers can buy the Excellent SXDev from SXList.com for $150 + $15 import fee + s&h (~ $180 total+tax in CA) |
.