58 Program to convert BCD Number to Hexadecimal Number in 8086 Microprocessor

Code: ; Program to convert BCD Number to Hexadecimal Number .MODEL SMALL .STACK 100H .DATA BCD DB '1234' HEX_NUM DW 0 ...
Read More

60 Program to find smallest number in the array using Macro in 8086 Microprocessor

Code: ; Program to find smallest number in the array using Macro .MODEL SMALL .STACK 100H SMALL_W MACRO ARRAY , LENGTH , SMALLEST ...
Read More

59 Program to perform operation Z = (A+B) * (C+D) using Procedure in 8086 Microprocessor

Code: ; Program to perform operation Z = (A+B) * (C+D) ; using Procedure .MODEL SMALL .STACK 100H .DATA    A DB 1    B DB 2    C...
Read More