8086 program Write an ALP to perform 16-bit and 32-bit multiplication.

Code :-

16-bit multiplication

org 100h         

MOV AX,1234H

MOV BX,1111H 

MUL BX

MOV [2000H],AX

MOV AX ,DX

MOV [2002H],AX

ret

Output :-


32-bit multiplication

org 100h          

MOV AX,1234H

MOV BX,1111H

MOV CX,1234H

MOV DX,1111H 

MUL BX

MUL DX

ret

Output :-



Comments

Popular Posts

What is Tinkercad ? How to use Tinkercad ?

Connect switch to Arduino. If switch is on than print ”ON” else print “OFF” on serial monitor.

Develop an interfacing circuit and a sketch to increment count on 7-Segment based on switch press. Count goes from 00 to 99.