Assembly big numbers calculator
问题 I've been given an assingment to make a calculator in 8086 assembly that will add, substract, multiply and divide big decimal numbers. These numbers can be 30 digits long at most. I've used 3 arrays to house these numbers (num1, num2, result). I'm stuck at the addition, because every time I run the program, it displays that the result array is empty (it shows a plus sign and 60 zeroes) can you tell what is wrong with my code? ADDER: MOV BP, offset num1 MOV SI, offset num2 MOV DI, offset