;-----------------------------------------------------------------------------:
; 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
| file: /Techref/atmel/avr/div8x8sw-ec.htm, 1KB, , updated: 2007/9/14 18:14, local time: 2025/10/30 00:21,
216.73.216.50,10-8-63-169:LOG IN
|
| ©2025 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://massmind.org/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? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.