0% found this document useful (0 votes)
67 views

Multiplication of Two 16 Bit Numbers

This document provides instructions for an experiment to write an assembly language program that multiplies two 16-bit numbers. The program loads the multiplicand into the AX register, multiplies it by the multiplier, and stores the 32-bit product into the AX and DX registers. Upon completion, the experiment's aim of multiplying two 16-bit numbers using assembly language is achieved.

Uploaded by

Toaster97
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
67 views

Multiplication of Two 16 Bit Numbers

This document provides instructions for an experiment to write an assembly language program that multiplies two 16-bit numbers. The program loads the multiplicand into the AX register, multiplies it by the multiplier, and stores the 32-bit product into the AX and DX registers. Upon completion, the experiment's aim of multiplying two 16-bit numbers using assembly language is achieved.

Uploaded by

Toaster97
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

ECE Department MPMC LAB

Experiment No.: 4 Page 1 of 1 Year : III/IV B.Tech II Semester

MULTIPLICATION OF TWO 16-BIT NUMBERS Aim: - To write an assembly language program for multiplication of two 16-bit numbers.
MOV AX, MULTIPLICAND MUL MULTIPLIER MOV PRODUCT, AX MOV PRODUCT+2, DX END Result: Multiplication of two 16-bit numbers is

obtained.

Lab in-charge

HOD, ECE

You might also like