Given these 2 Assembly Programs:
Program.(1): to find the smallest number from an array of 10 numbers.
MOV SI,0401
MOV DI,040C
MOV CX,0A
MOV BL,0F
MOV AL,[SI]
CMP AL,BL
JG NEXT
MOV BL,AL
INC SI
DEC CX
JNZ UP
MOV [DI],BL
HLT
Program.(2): to find the smallest number from an array of 10 numbers.
MOV DI,040B
MOV BL,00
JL NEXT
Question: Merge these to programs to be in one single assembly program to perform the two opeartions (Samllest and Largest Number in Array of 10 Numbers).
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here