Experiment 7: 8085 program to find to find the smallest and largest number from the given series 8085 MPI Lab by Ravinder Nath Rajotiya - June 3, 2021June 4, 20210 Aim: Write a program to find to find the smallest and largest number from the given series Objectives: To learn assembly instructions To develop an assembly language program to find the smallest and lrgest number in a series Flowchart to find the smallest number in a series of numbers Program Address Opcode Operands Label mnemonic Comments 4200 C3 0D 042 JMP start ; short jump to main program 4203 0C 18 12 38 15 05 0F 02 08 (9 bytes) X: db 12, 24, 18, 56, 21, 5,15, 2,8 ;Data set 420C <1 bytes> small: DS 1 ;Reserve 1 byte space inmemory 420D 00 start: nop 420E 0E 09 MVI C, 9 ; Set up the counter 4210 21 03 042 LXI H, X ;Point to dataset 4213 7E MOV A, M ;Mov 1st element to accumulator 4214 00 REPT: nop 4215 32 0C 042 STA small ;Make a copy 4218 23 INX H ; Increment mem pointer 4219 BE CMP M ;Compare Acc and no. in next