Do an ALP programming to arrange numbers in ascending order.
ORG 0000H ;storing the program from 0000h location in ROM MOV R4,#05H ;load 05h in R5 AGAIN: MOV DPTR,#9000H ;load 9000h in DPTR(initializing pointer) MOV R3,#05H ;load 05h in R3 BACK: MOVX A,@DPTR ;fetching data from XRAM MOV B,A ;copy data of A to B INC DPTR ...