0
7.1kviews
Write a program for 8086 microprocessor to multiply two 32-bit numbers (12345678 X 876564321).
1 Answer
2
616views

Assume Number is stored in Data Segment. First start with calculation of partial product PO, P1, P2 and P3. Then addition of partial product will provide final result in R0, R1, R2 and R3.

Program:

enter image description here

Please log in to add an answer.