About PLD provide a pseudo code to design an application tha
     About PLD provide a pseudo code to design an application that accepts 10 numbers and displays them in descending order.  Assembly language:  Write an assembly program that updates the data memory D as D[0] = D[0] + D[l] using 3 instruction instruction set. Explain the operation of each instruction used. 
  
  Solution
Code:
MOV R0, 0
MOV R1, 1
ADD R0, R0, R1
MOV 0, R0
Explanation:

