Assembler function gets overflow

746 Views Asked by At

Any assembler pros here? Been going through this for hours.. Can't figure out why do I get overflow and stuff. Any ideas why this is collapsing?

My variables:

a DB 2
b DB 1
c DW 4
x DB -1, 2, 3
y DW kiek dup(0AAh)

And my function

f3:
MOV bx, c
MOV ax, 2   ; ax = 2
IMUL bx      ; ax = 2c
JO kl1      ; mul too big to store 
MOV dx,ax   ; dx = 2c  
MOV al, a   ; al = a
CBW
SUB dx, ax  ; dx = 2c - a
MOV bx,dx   ; bx = 2c - a
MOV cl, x[si]
CBW
MOV al,a    ; al = a
IMUL cx  ; al = a*x
CBW
JO kl1      ; mul too big to store
MOV dx, c   ; dx = c  
ADD ax,dx   ; ax = a*x+c
MOV cx,ax   ; cx = a*x+c
MOV dx,bx   ; ax = 2c-a
MOV bx, cx
CMP bx, 0
JE kl2  ; divided by 0
MOV ax, dx     
IDIV bx
JMP re

Sorry if it's some dumb error, just can't handle it anymore, thanks!

everything goes fine, i get 6 in register A, 2 in register B, and when it tries to IDIV, it says: divide error - overflow. to manually process this error, change address of INT 0 in interrupt vector table.

and it shows me this line ( i don't even have it on my code):

 BIOS DI
 INT 00h
 IRET ; this is where i get the error 
0

There are 0 best solutions below