24 PROGRAM TO MULTIPLY TWO 16 BIT UNSIGNED NUMBERS RESULT IS MAX 32 BIT IN 8086 MICROPROCESSOR

Code: ; PROGRAM TO MULTIPLY TWO 16 BIT UNSIGNED ; NUMBERS RESULT IS MAX 32 BIT .MODEL SMALL .STACK 100 .DATA    NUM1    DW 012F0H ...
Read More

23 Program to multiply two 8 bit unsigned numbers result is max 16 bit in 8086 Microprocessor.

Code: ; PPROGRAM TO MULTIPLY TWO 8 BIT ; UNSIGNED NUMBERS RESULT IS MAX 16 BIT .MODEL SMALL .STACK 100 .DATA    NUM1 DB 03H    NU...
Read More

22 Program on Addition of 10 BCD numbers in Series in 8086 Microprocessor

Code: ; Addition of 10 BCD numbers in Series .MODEL SMALL .STACK 100 .DATA   ARRAY   DB 1,2,3,4,5,6,7,8,9,10   SUM_LSB DB 0   SUM_...
Read More

21 Program to add 2 BCD numbers in 8086 Microprocessor

Code: ; PROGRAM TO ADD 2 BCD NUMBERS .MODEL SMALL .STACK 100 .CODE    MOV AL , 09H    MOV BL , 06H    ADD AL , BL    DAA       ...
Read More

20 Program for addition of 8 bit numbers in series result may be greater than 16 bit in 8086 Microprocessor.

Code: ; PROGRAM TO ADDITION OF 8 BIT NUMBERS ; IN SERIES RESULT MAY BE GREATER THAN 16 BIT .MODEL SMALL .STACK 100H .DATA   ARR1 ...
Read More

19 Program to print an array using loop in 8086 Microprocessor

Code: ; Program to print an array using loop .MODEL SMALL .STACK 100 .DATA    ARR1 DB '1','2','3','4'...
Read More

18 Program to subtract two 16 bit number in 8086 Microprocessor

Code: ; Program to substract two 16 bit numbers .MODEL SMALL .STACK 100 .CODE   MOV AX , 8900H  ; Load 1st num   MOV BX , 7C60H  ;...
Read More

16 Program to add two 16 bit number in 8086 Microprocessor.

Code: ; Program to add 2 16bit number .MODEL SMALL .STACK 100 .CODE        MOV AX,8960H ; Load first number in AX   MOV BX,7C60H ;...
Read More

17 Program to sum two 16 bit number Using Memory in 8086 Microprocessor

Code: ; Program to add 2 16 bit number using memory .MODEL SMALL .STACK 100 .DATA    NUM1 DW 8A64H  ;  First Number    NUM2 DW 5F9...
Read More