DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   Assembly (http://www.daniweb.com/forums/forum125.html)
-   -   divide overflow??? (http://www.daniweb.com/forums/thread22093.html)

ghostfacelz Apr 18th, 2005 1:11 pm
divide overflow???
 
hi... ive tried alot of things already...and i know what the problem is, just not sure how to fix it.
ive isolated it to this part of the code thats giving me problems... and i think that its because the register cant hold the number (hence the overflow error)
        MOV AX, number                ;for division
        MOV CX, 2d                ;''
        DIV CX                        ; AX (number) / CX (2) = n/2 in ax
        INC AX                        ;so now its n/2 +1
        MOV countmax, AX        ;store max var.
number will be from 100-999

since my div skills arent that great...what is the best way to divide something? my book isnt very helpful.
thanks
-g

bighorse Sep 14th, 2005 4:23 am
Re: divide overflow???
 
when we do "div",there some rules we must abide by.
1.8 digits "div",like
mov bh,1
mov ax,11
div bh
send the quotient to al, and send the arithmetical complimentremainder to ah
2. 16 digits "div",like
mov bx,11
mov ax,3223
div bx
send the quotient to ax, and send the arithmetical complimentremainder to dx
so, if the quotient lager than al in 8 digits "div" and larger than ax in 16 digits "div", system will call 0 interrupt, and display "Divide overflow"

ghostfacelz Sep 14th, 2005 1:05 pm
Re: divide overflow???
 
right... i understand all of that.. thats the problem that i am having...
but how would you go about doing the division then....


All times are GMT -4. The time now is 4:37 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC