38 Program to find number of 0's from 16 bit number in 8086 Microprocessor

Code: ; Program to find number of 0s from 16 bit number .MODEL SMALL .STACK 100H .DATA    NUM DW 1234H    COUNT DB 0H .CODE    MO...
Read More

40 Program to sort number in Ascending Order in 8086 Microprocessor

Code: ; Program to arrange number in ascending order .MODEL SMALL .STACK 100H .DATA    ARR DB 2H,5H,0H,7H,3H .CODE    MOV AX  , @D...
Read More

39 Program to sort number of array in descending order in 8086 Microprocessor

Code: ; PROGRAM TO ARRANGE NUMBERS OF THE ARRAY IN DESCENDING ORDER .MODEL SMALL .STACK 100H .DATA    ARR DB 8,9,2,7,5 .CODE    ...
Read More