Create an assembly program that creates an array (in main memory) that stores the decimal values 1,2,3,4,5,6,7,8,9,10. Calculate the sum of EVERY OTHER array value (1+3+5+7+9 = 25). Store the sum into a new memory location in RAM Add comments to every instruction to the .code section. Write the program in such a way that it will work even if the number of elements is changed In other words, whenever possible avoid hard-coding values, the program should use various directives and use a loop. You may assume an even number of elements to simplify the logic. Screenshots showing the values of the relevant registers throughout your program
Make sure you include a screenshot where the correct sum is shown (1+2+3+4+5 = 15) in a register or memory location
Modified .asm file (including comments for every instruction in the .code section)