Hi. The below program is multibyte addition program. Here am using ADC for addtion. But it did not add carry for large numbers. suppose adding 2 numbers like
E 1000 02 00
E 1002 AA AA AA AA
E 2000 FF FF FF FF
the ouptut will be 1AAAAAAA9
but while compile this program the output wil be
A9. AA. A9. AA. 00. 00. 00
Any one explain why the program did not add carry?is there any solution.....
ASSUME CS:CODE
CODE SEGMENT
MOV SI,1000H
MOV BX,2000H
MOV DI,2500H
MOV DL,00H
MOV CX,[SI]
ADD SI,02H
L: MOV AX,[SI]
ADC AX,[BX]
MOV [DI],AX
ADD BX,02H
ADD SI,02H
ADD DI,02H
LOOP L
JNC L1
INC DL
L1: MOV [DI],DL
MOV AH,4CH
INT 21H
CODE ENDS
END
E 1000 02 00
E 1002 AA AA AA AA
E 2000 FF FF FF FF
the ouptut will be 1AAAAAAA9
but while compile this program the output wil be
A9. AA. A9. AA. 00. 00. 00
Any one explain why the program did not add carry?is there any solution.....
ASSUME CS:CODE
CODE SEGMENT
MOV SI,1000H
MOV BX,2000H
MOV DI,2500H
MOV DL,00H
MOV CX,[SI]
ADD SI,02H
L: MOV AX,[SI]
ADC AX,[BX]
MOV [DI],AX
ADD BX,02H
ADD SI,02H
ADD DI,02H
LOOP L
JNC L1
INC DL
L1: MOV [DI],DL
MOV AH,4CH
INT 21H
CODE ENDS
END