Question: Write (and test using DS5) an assembly language program in ARMv8 to find the sum, the largest and the smallest of n non-zero positive
Write (and test using DS5) an assembly language program in ARMv8 to find the sum, the largest and the smallest of n non-zero positive integers. Declare data sections to store the n positive values as an array v and a variable to store n. Create a loop to go through the array for finding the sum of the elements of the array, the largest and the smallest numbers. Store sum in register X8, largest and smallest values in X9, X10 respectively. Test input: n=8; the eight positive integers are: 79, 55, 94, 48, 19, 13, 45, 21 Submit (Required): a) A file containing your assembly code (.S file) b). A read me file on how to execute. Indicate your use of registers. c). At least two screen shots, showing register values before executing the first instruction in your code and a screen shot showing the register contents after the last instruction is executed (to show results)
Step by Step Solution
There are 3 Steps involved in it
Heres a simple ARMv8 assembly code in the GAS GNU Assembler syntax global start section data n word ... View full answer
Get step-by-step solutions from verified subject matter experts
