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

 Code :-

16 bit addition

org 100h

MOV AX,0A235H

MOV BX,8564H

ADD AX,BX

ret

Output :-



32 bit addition 

org  100h

MOV AX,1111H

MOV BX,1111H

MOV CX,9999H

MOV DX,9999H

ADC  AX,CX

ADC BX,DX

ret

Output :-


16 bit subtraction

org 100h

MOV AX,0A235H

MOV BX,8564H

SUB  AX,BX

ret

Output :-


32 bit subtraction

org  100h

MOV AX,1010H

MOV BX,1010H

MOV CX,0909H

MOV DX,0909H

SUB  AX,CX

SUB  BX,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.