Computer Science, asked by patu12, 1 year ago

write the names of result register of multiplication of 8/16 bits unsigned and signed numbers in assembly language in 8086

Answers

Answered by aqibkincsem
6

8085 program to multiply two 16-bit numbers. Problem – Write an assembly language program in 8085 microprocessor to multiply two 16 bit numbers.Assumption –Starting address of program: 2000. Input memory location: 2050, 2051, 2052, 2053/ Output memory location: 2054, 2055, 2056, 2057.

Example –INPUT:  (2050H) = 04H, (2051H) = 07H , (2052H) = 02H ,(2053H) = 01H. OUTPUT: (2054H) = 08H.(2055H) = 12H.  (2056H) = 01H.  (2057H) = O0H.RESULT:Thus  we have multiplied two 16 bit numbers.

Similar questions